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

/external/mksh/src/
H A Dmisc.c1940 if ((first = *l++), ((first = ksh_tolower(first)) == '\0'))
1944 while ((c = *b++), ((c = ksh_tolower(c)) != first))
H A Dshf.c870 c = ksh_tolower(c);
H A Dvar.c652 *q = ksh_tolower(*q);
H A Dedit.c3126 *cp = ksh_tolower(*cp);
3141 *cp = ksh_tolower(*cp);
4372 *p = ksh_tolower(*p);
H A Dsh.h236 #define ksh_tolower(c) (((c) >= 'A') && ((c) <= 'Z') ? (c) - 'A' + 'a' : (c)) macro

Completed in 401 milliseconds