Searched refs:wtest (Results 1 - 1 of 1) sorted by relevance

/freebsd-11-stable/lib/libedit/
H A Dchared.c242 c__prev_word(Char *p, Char *low, int n, int (*wtest)(wint_t)) argument
247 while ((p >= low) && !(*wtest)(*p))
249 while ((p >= low) && (*wtest)(*p))
266 c__next_word(Char *p, Char *high, int n, int (*wtest)(wint_t)) argument
269 while ((p < high) && !(*wtest)(*p))
271 while ((p < high) && (*wtest)(*p))
284 cv_next_word(EditLine *el, Char *p, Char *high, int n, int (*wtest)(wint_t)) argument
289 test = (*wtest)(*p);
290 while ((p < high) && (*wtest)(*p) == test)
313 cv_prev_word(Char *p, Char *low, int n, int (*wtest)(wint_ argument
377 cv__endword(Char *p, Char *high, int n, int (*wtest)(wint_t)) argument
[all...]

Completed in 74 milliseconds