Tenok
A Linux-like Real-Time Operating System for Robotics and Internet of Things
fnmatch.h
Go to the documentation of this file.
1 
6 #ifndef _TENOK_FNMATCH_H
7 #define _TENOK_FNMATCH_H
8 
9 #define FNM_NOMATCH 1
10 
11 /* The values POSIX systems give them */
12 #define FNM_PATHNAME 0x0001 /* A slash is matched by a slash alone */
13 #define FNM_NOESCAPE 0x0002 /* A backslash stands for itself */
14 #define FNM_PERIOD 0x0004 /* A leading period is matched by a period */
15 #define FNM_CASEFOLD 0x0010 /* Upper and lower case are the same letter */
16 
17 int fnmatch(const char *pattern, const char *string, int flags);
18 
19 #endif