11 lines
No EOL
185 B
C
11 lines
No EOL
185 B
C
#ifndef _FNMATCH_H
|
|
#define _FNMATCH_H
|
|
|
|
#define FNM_NOMATCH 0
|
|
#define FNM_PATHNAME 1
|
|
#define FNM_PERIOD 2
|
|
#define FNM_NOESCAPE 3
|
|
|
|
int fnmatch(const char *, const char *, int);
|
|
|
|
#endif |