/
uis
/
git
/
x
/
uis
/
git
/
git.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
wildmatch: adjust "**" behavior
[git/git.git]
/
wildmatch.h
1
/* wildmatch.h */
2
3
#define ABORT_MALFORMED 2
4
#define NOMATCH 1
5
#define MATCH 0
6
#define ABORT_ALL -1
7
#define ABORT_TO_STARSTAR -2
8
9
int
wildmatch
(
const char
*
pattern
,
const char
*
text
,
int
flags
);