Sync with 'master'
[alt-git.git] / wildmatch.h
blob0c890cb56ba303db40a4c4f3244cc4a672303ac1
1 #ifndef WILDMATCH_H
2 #define WILDMATCH_H
4 #define WM_CASEFOLD 1
5 #define WM_PATHNAME 2
7 #define WM_NOMATCH 1
8 #define WM_MATCH 0
10 int wildmatch(const char *pattern, const char *text, unsigned int flags);
11 #endif