Staging
v0.5.1
https://github.com/git/git
Revision bab39ed371145b83340750101e7ec85167845857 authored by Junio C Hamano on 03 May 2009, 22:20:03 UTC, committed by Junio C Hamano on 03 May 2009, 22:29:31 UTC
With a handful of fixes backmerged from 1.6.2.X series

Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent e89c6ea
Raw File
Tip revision: bab39ed371145b83340750101e7ec85167845857 authored by Junio C Hamano on 03 May 2009, 22:20:03 UTC
GIT 1.6.1.4
Tip revision: bab39ed
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