Home
last modified time | relevance | path

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

/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/edit/
H A Demacs.c92 # define isword(c) _isword(out[c]) macro
100 # define isword(c) (isalnum(out[c]) || (out[c]=='_')) macro
830 while ((out[i])&&(!isword(i))) in escape()
832 while ((out[i])&&(isword(i))) in escape()
888 while ((i>0)&&(!isword(i))) in escape()
890 while ((i>0)&&(isword(i-1))) in escape()
/illumos-gate/usr/src/contrib/ast/src/lib/libast/regex/
H A Dregnexec.c1754 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()
H A Dreglib.h260 #define isword(x) (isalnum(x)||(x)=='_') macro