diff options
author | Philip Kelley <phkelley@hotmail.com> | 2012-09-17 15:42:41 -0400 |
---|---|---|
committer | Philip Kelley <phkelley@hotmail.com> | 2012-09-17 15:42:41 -0400 |
commit | ec40b7f99f7f7161b0a1b24f1d8a934ec0eaacb1 (patch) | |
tree | 59744c10038258c3993a4eb1b1dfc3896c35b97a /src/attr_file.h | |
parent | e8776d30f7edb570f435cf746d712c696b862bdd (diff) | |
download | libgit2-ec40b7f99f7f7161b0a1b24f1d8a934ec0eaacb1.tar.gz |
Support for core.ignorecase
Diffstat (limited to 'src/attr_file.h')
-rw-r--r-- | src/attr_file.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/attr_file.h b/src/attr_file.h index 9d6730d90..b28d8a02b 100644 --- a/src/attr_file.h +++ b/src/attr_file.h @@ -23,6 +23,7 @@ #define GIT_ATTR_FNMATCH_IGNORE (1U << 4) #define GIT_ATTR_FNMATCH_HASWILD (1U << 5) #define GIT_ATTR_FNMATCH_ALLOWSPACE (1U << 6) +#define GIT_ATTR_FNMATCH_ICASE (1U << 7) extern const char *git_attr__true; extern const char *git_attr__false; @@ -96,7 +97,7 @@ extern void git_attr_file__free(git_attr_file *file); extern void git_attr_file__clear_rules(git_attr_file *file); extern int git_attr_file__parse_buffer( - git_repository *repo, const char *buf, git_attr_file *file); + git_repository *repo, void *parsedata, const char *buf, git_attr_file *file); extern int git_attr_file__lookup_one( git_attr_file *file, |