Home
last modified time | relevance | path

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

/titanic_41/usr/src/lib/libshell/common/edit/
H A Demacs.c92 # define isword(c) _isword(out[c]) macro
99 # define isword(c) (isalnum(out[c]) || (out[c]=='_')) macro
796 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()
/titanic_41/usr/src/lib/libast/common/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