Home
last modified time | relevance | path

Searched refs:is_ws (Results 1 – 3 of 3) sorted by relevance

/NextBSD/contrib/openpam/lib/libpam/
HDopenpam_readword.c84 } else if (!is_ws(ch)) { in openpam_readword()
96 while ((ch = fgetc(f)) != EOF && (!is_ws(ch) || quote || escape)) { in openpam_readword()
HDopenpam_ctype.h78 #define is_ws(ch) \ macro
/NextBSD/bin/sh/
HDexpand.c167 int is_ws; in nextword() local
169 is_ws = c == '\t' || c == '\n' || c == ' '; in nextword()
170 if (p != stackblock() || (is_ws ? dst->state == WORD_QUOTEMARK : in nextword()
177 dst->state = is_ws ? WORD_WS_DELIMITED : WORD_IDLE; in nextword()
178 } else if (!is_ws && dst->state == WORD_WS_DELIMITED) in nextword()