summaryrefslogtreecommitdiff
path: root/tvision/include/cl/fnmatch.h
blob: af0ee7e718c737ff5049298da3002bca3e3f8dc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef __FNMATCH_H
#define __FNMATCH_H

#ifdef __cplusplus
extern "C" {
#endif

#define FNM_NOESCAPE	0x01
#define FNM_PATHNAME	0x02
#define FNM_PERIOD	0x04
#define FNM_NOCASE	0x08

#define FNM_NOMATCH	1
#define FNM_ERROR	2

int fnmatch(const char *_pattern, const char *_string, int _flags);

#ifdef __cplusplus
}
#endif

#endif /* __FNMATCH_H */