Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 8befc50c49e8a271fd3cd7fb34258fe88d1dfcad authored by Johannes Schindelin on 14 December 2008, 22:10:52 UTC
Get rid of the last remnants of GIT_CONFIG_LOCAL
Tip revision: 8befc50
userdiff.h
#ifndef USERDIFF_H
#define USERDIFF_H

struct userdiff_funcname {
	const char *pattern;
	int cflags;
};

struct userdiff_driver {
	const char *name;
	const char *external;
	int binary;
	struct userdiff_funcname funcname;
	const char *textconv;
};

int userdiff_config(const char *k, const char *v);
struct userdiff_driver *userdiff_find_by_name(const char *name);
struct userdiff_driver *userdiff_find_by_path(const char *path);

#endif /* USERDIFF */
back to top