perf/run: add conf_opts argument to get_var_from_env_or_config()
[git.git] / wildmatch.h
blobb8c826aa684ec2cb0251af8e24a89689d66614b1
1 #ifndef WILDMATCH_H
2 #define WILDMATCH_H
4 #define WM_CASEFOLD 1
5 #define WM_PATHNAME 2
7 #define WM_ABORT_MALFORMED 2
8 #define WM_NOMATCH 1
9 #define WM_MATCH 0
10 #define WM_ABORT_ALL -1
11 #define WM_ABORT_TO_STARSTAR -2
13 int wildmatch(const char *pattern, const char *text, unsigned int flags);
14 #endif