 |
Blender
V3.3
|
Go to the documentation of this file.
16 #if defined WIN32 && !defined _LIBC
18 # if defined(__cplusplus) || (defined(__STDC__) && __STDC__)
20 # define __P(protos) protos
23 # define __P(protos) ()
36 # define FNM_PATHNAME (1 << 0)
37 # define FNM_NOESCAPE (1 << 1)
38 # define FNM_PERIOD (1 << 2)
40 # if !defined(_POSIX_C_SOURCE) || _POSIX_C_SOURCE < 2 || defined(_GNU_SOURCE)
41 # define FNM_FILE_NAME FNM_PATHNAME
42 # define FNM_LEADING_DIR (1 << 3)
43 # define FNM_CASEFOLD (1 << 4)
47 # define FNM_NOMATCH 1
51 extern int fnmatch __P((
const char *__pattern,
const char *__string,
int __flags));