Home
last modified time | relevance | path

Searched defs:ISDOT (Results 1 – 6 of 6) sorted by relevance

/dflybsd-src/contrib/tcsh-6/
H A Dsh.dir.h52 #define ISDOT(c) (NTRM((c)[0]) == '.' && ((NTRM((c)[1]) == '\0') || \ macro
/dflybsd-src/bin/rm/
H A Drm.c625 #define ISDOT(a) ((a)[0] == '.' && (!(a)[1] || ((a)[1] == '.' && !(a)[2]))) macro
/dflybsd-src/sbin/umount/
H A Dumount.c54 #define ISDOT(x) ((x)[0] == '.' && (x)[1] == '\0') macro
/dflybsd-src/lib/libc/gen/
H A Dfts.c60 #define ISDOT(a) (a[0] == '.' && (!a[1] || (a[1] == '.' && !a[2]))) macro
/dflybsd-src/contrib/bmake/
H A Dutil.c230 #define ISDOT(c) ((c)[0] == '.' && (((c)[1] == '\0') || ((c)[1] == '/'))) macro
/dflybsd-src/contrib/grep/lib/
H A Dfts.c232 #define ISDOT(a) (a[0] == '.' && (!a[1] || (a[1] == '.' && !a[2]))) macro