Searched refs:FOLD_FN_CHAR (Results 1 - 4 of 4) sorted by relevance

/freebsd-9.3-release/contrib/cvs/lib/
H A Dfnmatch.c71 if (FOLD_FN_CHAR (*n) != FOLD_FN_CHAR (c))
91 if ((c == '[' || FOLD_FN_CHAR (*n) == FOLD_FN_CHAR (c1)) &&
170 if (FOLD_FN_CHAR (c) != FOLD_FN_CHAR (*n))
H A Dsystem.h488 # define FOLD_FN_CHAR(c) (WNT_filename_classes[(unsigned char) (c)]) macro
492 # define ISDIRSEP(c) (FOLD_FN_CHAR(c) == '/')
493 # define ISABSOLUTE(s) (ISDIRSEP(s[0]) || FOLD_FN_CHAR(s[0]) >= 'a' && FOLD_FN_CHAR(s[0]) <= 'z' && s[1] == ':' && ISDIRSEP(s[2]))
504 # define FOLD_FN_CHAR(c) (VMS_filename_classes[(unsigned char) (c)]) macro
507 # define FOLD_FN_CHAR(c) (OSX_filename_classes[(unsigned char) (c)]) macro
513 * When not FOLD_FN_CHAR is not #defined, a default definition for these
526 /* Some file systems are case-insensitive. If FOLD_FN_CHAR is
530 separators, so FOLD_FN_CHAR would map them both to /. */
531 #ifndef FOLD_FN_CHAR
532 # define FOLD_FN_CHAR macro
[all...]
H A Dfncase.c138 && (FOLD_FN_CHAR(*n1)
139 == FOLD_FN_CHAR(*n2)))
141 return (FOLD_FN_CHAR(*n1) - FOLD_FN_CHAR(*n2));
145 If FOLD_FN_CHAR is not #defined, the system provides a default
152 *filename = FOLD_FN_CHAR (*filename);
/freebsd-9.3-release/contrib/cvs/src/
H A Dhash.c40 /* The FOLD_FN_CHAR is so that findnode_fn works. */
41 h = (h << 4) + FOLD_FN_CHAR (c);

Completed in 84 milliseconds