]> git.ipfire.org Git - thirdparty/git.git/blob - userdiff.h
Sync with 2.16.6
[thirdparty/git.git] / userdiff.h
1 #ifndef USERDIFF_H
2 #define USERDIFF_H
3
4 #include "notes-cache.h"
5
6 struct userdiff_funcname {
7 const char *pattern;
8 int cflags;
9 };
10
11 struct userdiff_driver {
12 const char *name;
13 const char *external;
14 int binary;
15 struct userdiff_funcname funcname;
16 const char *word_regex;
17 const char *textconv;
18 struct notes_cache *textconv_cache;
19 int textconv_want_cache;
20 };
21
22 int userdiff_config(const char *k, const char *v);
23 struct userdiff_driver *userdiff_find_by_name(const char *name);
24 struct userdiff_driver *userdiff_find_by_path(const char *path);
25
26 /*
27 * Initialize any textconv-related fields in the driver and return it, or NULL
28 * if it does not have textconv enabled at all.
29 */
30 struct userdiff_driver *userdiff_get_textconv(struct userdiff_driver *driver);
31
32 #endif /* USERDIFF */