 |
Blender
V2.93
|
Go to the documentation of this file.
32 #if defined WIN32 && !defined _LIBC
34 # if defined(__cplusplus) || (defined(__STDC__) && __STDC__)
36 # define __P(protos) protos
39 # define __P(protos) ()
52 # define FNM_PATHNAME (1 << 0)
53 # define FNM_NOESCAPE (1 << 1)
54 # define FNM_PERIOD (1 << 2)
56 # if !defined(_POSIX_C_SOURCE) || _POSIX_C_SOURCE < 2 || defined(_GNU_SOURCE)
57 # define FNM_FILE_NAME FNM_PATHNAME
58 # define FNM_LEADING_DIR (1 << 3)
59 # define FNM_CASEFOLD (1 << 4)
63 # define FNM_NOMATCH 1
67 extern int fnmatch __P((
const char *__pattern,
const char *__string,
int __flags));