blob: 2067f595d93f1b7776777a7d8a17d89b86a6ebda (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef __FNMATCH_H
#define __FNMATCH_H
#define FNM_PATHNAME 0x1
#define FNM_NOESCAPE 0x2
#define FNM_PERIOD 0x4
#define FNM_CASEFOLD 0x8
#define FNM_NOMATCH 1
#define FNM_IGNORECASE FNM_CASEFOLD
int fnmatch(const char *, const char *, int);
#endif
|