Searched refs:isword (Results 1 – 3 of 3) sorted by relevance
92 # define isword(c) _isword(out[c]) macro99 # define isword(c) (isalnum(out[c]) || (out[c]=='_')) macro796 while ((out[i])&&(!isword(i))) in escape()798 while ((out[i])&&(isword(i))) in escape()854 while ((i>0)&&(!isword(i))) in escape()856 while ((i>0)&&(isword(i-1))) in escape()
1754 if (!isword(*s) || s > env->beg && isword(*(s - 1))) in parse()1758 if (isword(*s) || s > env->beg && !isword(*(s - 1))) in parse()1762 if (s > env->beg && isword(*(s - 1)) == isword(*s)) in parse()1766 if (s == env->beg || isword(*(s - 1)) != isword(*s)) in parse()
260 #define isword(x) (isalnum(x)||(x)=='_') macro