FNM_NOMATCH can't be 0, so I changed it up
This commit is contained in:
parent
8e8dc98db5
commit
1006fa0b63
1 changed files with 4 additions and 4 deletions
|
@ -12,10 +12,10 @@
|
||||||
#ifndef _FNMATCH_H
|
#ifndef _FNMATCH_H
|
||||||
#define _FNMATCH_H
|
#define _FNMATCH_H
|
||||||
|
|
||||||
#define FNM_NOMATCH 0
|
#define FNM_NOMATCH 1
|
||||||
#define FNM_PATHNAME 1
|
#define FNM_PATHNAME 2
|
||||||
#define FNM_PERIOD 2
|
#define FNM_PERIOD 3
|
||||||
#define FNM_NOESCAPE 3
|
#define FNM_NOESCAPE 4
|
||||||
|
|
||||||
int fnmatch(const char *, const char *, int);
|
int fnmatch(const char *, const char *, int);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue