Home | History | Annotate | Download | only in util

Lines Matching full:last

22  ** '\0'.) The last return has ABORT instead of FALSE to avoid quadratic
25 ** only the last one does.
61 register int last;
100 for (last = *p; *++p && *p != ']'; last = *p)
103 ? *text <= *++p && *text >= last : *text == *p)
125 register int last;
164 for (last = toupper(*p); *++p && *p != ']'; last = toupper(*p))
167 ? toupper(*text) <= toupper(*++p) && toupper(*text) >= last : toupper(*text) == toupper(*p))