Code & Deploy
Code
Models
Repos
Sign in
@leroysheep
/
Socializer
Socializer
/
wildmatch.h
Code
Commits
Pulls
CI/CD
81,295
bisect
bisect
jch
maint
master
next
seen
test
todo
h
11 lines
208 Bytes
Copy permalink
Copy
Raw
1
#ifndef WILDMATCH_H
2
#define WILDMATCH_H
3
4
#define WM_CASEFOLD 1
5
#define WM_PATHNAME 2
6
7
#define WM_NOMATCH 1
8
#define WM_MATCH 0
9
10
int
wildmatch
(
const
char
*
pattern
,
const
char
*
text
,
unsigned
int
flags
);
11
#endif