11 lines
159 B
C
11 lines
159 B
C
#ifndef fnmatch_h
|
|
#define fnmatch_h
|
|
|
|
#include "cfunc.h"
|
|
|
|
#define FNM_NOMATCH 1
|
|
|
|
CFUNC int fnmatch(const char *pattern, const char *string, int flags);
|
|
|
|
#endif
|