diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-12-03 16:10:34 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-12-03 16:10:34 -0800 |
commit | 5e738ae820ec53c45895b029baa3a1f63e654b1b (patch) | |
tree | 80624092ee1bf2ae435fc220e6f529f096e2a039 /dir.h | |
parent | b281796eeb925f5e91d27cd6c6c579c925577160 (diff) | |
parent | 50906e04e8f48215b0b09841686709b92a2ab2e4 (diff) | |
download | git-5e738ae820ec53c45895b029baa3a1f63e654b1b.tar.gz |
Merge branch 'jj/icase-directory'
* jj/icase-directory:
Support case folding in git fast-import when core.ignorecase=true
Support case folding for git add when core.ignorecase=true
Add case insensitivity support when using git ls-files
Add case insensitivity support for directories when using git status
Case insensitivity support for .gitignore via core.ignorecase
Add string comparison functions that respect the ignore_case variable.
Makefile & configure: add a NO_FNMATCH_CASEFOLD flag
Makefile & configure: add a NO_FNMATCH flag
Conflicts:
Makefile
config.mak.in
configure.ac
fast-import.c
Diffstat (limited to 'dir.h')
-rw-r--r-- | dir.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -101,4 +101,8 @@ extern int remove_dir_recursively(struct strbuf *path, int flag); /* tries to remove the path with empty directories along it, ignores ENOENT */ extern int remove_path(const char *path); +extern int strcmp_icase(const char *a, const char *b); +extern int strncmp_icase(const char *a, const char *b, size_t count); +extern int fnmatch_icase(const char *pattern, const char *string, int flags); + #endif |