[BACK]Return to fnmatch.h CVS log [TXT][DIR] Up to [local] / src / include

Diff for /src/include/fnmatch.h between version 1.7 and 1.8

version 1.7, 2003/06/02 19:34:12 version 1.8, 2005/12/13 00:35:22
Line 35 
Line 35 
 #ifndef _FNMATCH_H_  #ifndef _FNMATCH_H_
 #define _FNMATCH_H_  #define _FNMATCH_H_
   
   #include <sys/cdefs.h>
   
 #define FNM_NOMATCH     1       /* Match failed. */  #define FNM_NOMATCH     1       /* Match failed. */
 #define FNM_NOSYS       2       /* Function not supported (unused). */  #define FNM_NOSYS       2       /* Function not supported (unused). */
   
 #define FNM_NOESCAPE    0x01    /* Disable backslash escaping. */  #define FNM_NOESCAPE    0x01    /* Disable backslash escaping. */
 #define FNM_PATHNAME    0x02    /* Slash must be matched by slash. */  #define FNM_PATHNAME    0x02    /* Slash must be matched by slash. */
 #define FNM_PERIOD      0x04    /* Period must be matched by period. */  #define FNM_PERIOD      0x04    /* Period must be matched by period. */
 #ifndef _POSIX_SOURCE  #if __BSD_VISIBLE
 #define FNM_LEADING_DIR 0x08    /* Ignore /<tail> after Imatch. */  #define FNM_LEADING_DIR 0x08    /* Ignore /<tail> after Imatch. */
 #define FNM_CASEFOLD    0x10    /* Case insensitive search. */  #define FNM_CASEFOLD    0x10    /* Case insensitive search. */
 #define FNM_IGNORECASE  FNM_CASEFOLD  #define FNM_IGNORECASE  FNM_CASEFOLD
 #define FNM_FILE_NAME   FNM_PATHNAME  #define FNM_FILE_NAME   FNM_PATHNAME
 #endif  #endif
   
 #include <sys/cdefs.h>  
   
 __BEGIN_DECLS  __BEGIN_DECLS
 int      fnmatch(const char *, const char *, int);  int      fnmatch(const char *, const char *, int);

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8