HomeSort by: relevance | last modified time | path
    Searched refs:ISWORD (Results 1 - 2 of 2) sorted by relevancy

  /src/lib/libc/regex/
engine.c 625 (sp < m->endp && ISWORD(*sp) && \
627 (sp > m->offp && !ISWORD(*(sp-1)))))
632 (sp < m->endp && !ISWORD(*sp)) ) && \
633 (sp > m->beginp && ISWORD(*(sp-1)))) \
735 if (((sp == m->beginp) && !ISWORD(*sp)) ||
736 (sp == m->endp && !ISWORD(*(sp - 1))))
738 else if (ISWORD(*(sp - 1)) == ISWORD(*sp))
912 * so this only breaks the ISWORD tests below.
961 if ( (flagch == BOL || (lastc != OUT && !ISWORD(lastc))) &
    [all...]
regex2.h 204 #define ISWORD(c) (iswalnum((uch)(c)) || (c) == '_')

Completed in 17 milliseconds