]> git.ipfire.org Git - thirdparty/git.git/blob - userdiff.h
i18n: add no-op _() and N_() wrappers
[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 #endif /* USERDIFF */