 |
Blender V4.3
|
Go to the documentation of this file.
17#if defined WIN32 && !defined _LIBC
19# if defined(__cplusplus) || (defined(__STDC__) && __STDC__)
21# define __P(protos) protos
24# define __P(protos) ()
37# define FNM_PATHNAME (1 << 0)
38# define FNM_NOESCAPE (1 << 1)
39# define FNM_PERIOD (1 << 2)
41# if !defined(_POSIX_C_SOURCE) || _POSIX_C_SOURCE < 2 || defined(_GNU_SOURCE)
42# define FNM_FILE_NAME FNM_PATHNAME
43# define FNM_LEADING_DIR (1 << 3)
44# define FNM_CASEFOLD (1 << 4)
52extern int fnmatch __P((
const char *__pattern,
const char *__string,
int __flags));