Home
last modified time | relevance | path

Searched refs:ISSLASH (Results 1 – 5 of 5) sorted by relevance

/freebsd-9-stable/contrib/diff/lib/
Dbasename.c43 if (ISSLASH (*p)) in base_name()
47 while (ISSLASH (*p)); in base_name()
53 if (ISSLASH (*base)) in base_name()
75 for (len = strlen (name); 1 < len && ISSLASH (name[len - 1]); len--) in base_len()
Ddirname.h28 # ifndef ISSLASH
29 # define ISSLASH(C) ((C) == DIRECTORY_SEPARATOR) macro
/freebsd-9-stable/contrib/diff/
Dconfig.h421 # define ISSLASH(C) ((C) == '/' || (C) == '\\') macro
423 # define ISSLASH(C) ((C) == '/') macro
/freebsd-9-stable/gnu/usr.bin/sort/
Dconfig.h1148 # define ISSLASH(C) ((C) == '/' || (C) == '\\') macro
1150 # define ISSLASH(C) ((C) == '/') macro
/freebsd-9-stable/bin/rm/
Drm.c525 #define ISSLASH(a) ((a)[0] == '/' && (a)[1] == '\0') macro
534 if (ISSLASH(*t)) { in checkslash()