]> git.ipfire.org Git - thirdparty/git.git/blame - wildmatch.h
Sync with maint
[thirdparty/git.git] / wildmatch.h
CommitLineData
9b3497ca
NTND
1#ifndef WILDMATCH_H
2#define WILDMATCH_H
5230f605 3
9b3497ca 4#define WM_CASEFOLD 1
c41244e7 5#define WM_PATHNAME 2
40bbee0a 6
9b3497ca
NTND
7#define WM_NOMATCH 1
8#define WM_MATCH 0
9#define WM_ABORT_ALL -1
10#define WM_ABORT_TO_STARSTAR -2
11
55d34269 12int wildmatch(const char *pattern, const char *text, unsigned int flags);
9b3497ca 13#endif