]> git.ipfire.org Git - thirdparty/git.git/blame_incremental - userdiff.h
perl: bump the required Perl version to 5.8 from 5.6.[21]
[thirdparty/git.git] / userdiff.h
... / ...
CommitLineData
1#ifndef USERDIFF_H
2#define USERDIFF_H
3
4#include "notes-cache.h"
5
6struct userdiff_funcname {
7 const char *pattern;
8 int cflags;
9};
10
11struct 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
22int userdiff_config(const char *k, const char *v);
23struct userdiff_driver *userdiff_find_by_name(const char *name);
24struct userdiff_driver *userdiff_find_by_path(const char *path);
25
26#endif /* USERDIFF */