Home
last modified time | relevance | path

Searched defs:ISWORD (Results 1 – 3 of 3) sorted by relevance

/minix3/external/bsd/nvi/dist/regex/
H A Dregex2.h173 #define ISWORD(c) ((c) == '_' || (ISGRAPH((UCHAR_T)c) && !ISPUNCT((UCHAR_T)c))) macro
/minix3/lib/libc/regex/
H A Dregex2.h209 #define ISWORD(c) (isalnum((unsigned char)c) || (c) == '_') macro
/minix3/external/bsd/llvm/dist/llvm/lib/Support/
H A Dregex2.h160 #define ISWORD(c) (isalnum(c&0xff) || (c) == '_') macro