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

/external/mksh/src/
H A Dvar.c240 if (ksh_isdigit(c)) {
241 for (c = 0; ksh_isdigit(*n); n++)
529 } else if (ksh_isdigit(c))
723 if (!ksh_isdigit(val[i]))
H A Dsyn.c1064 while (ksh_isdigit(*s)) {
1085 while (ksh_isdigit(*s)) {
1092 while (ksh_isdigit(*s))
H A Dmisc.c463 if (!ksh_isdigit(c))
1011 if (ksh_isdigit(argv[go->optind - 1][go->p])) {
1017 if (argv[go->optind] && ksh_isdigit(argv[go->optind][0])) {
H A Dlex.c425 } else if (ksh_isdigit(c) ||
926 if (!ksh_isdigit(dp[c2 + 1]))
1628 else if (ksh_isdigit(c))
1667 if (!ksh_isdigit(c))
H A Dshf.c844 if (ksh_isdigit(c)) {
846 while (c = *fmt++, ksh_isdigit(c))
H A Dfuncs.c1283 if ((p = wp[1]) && *p == '-' && (ksh_isdigit(p[1]) ||
1611 if (ksh_isdigit(*cp)) {
3441 if (!rval && !ksh_isdigit(v[0])) {
H A Dexpr.c545 } else if (ksh_isdigit(c)) {
H A Dhistrap.c1174 if (ksh_isdigit(*name)) {
H A Djobs.c1550 if (ksh_isdigit(*cp)) {
H A Dmain.c1317 for (fd = 0; ksh_isdigit(*name); ++name)
H A Dedit.c2886 while (c >= 0 && ksh_isdigit(c)) {
3602 if (ksh_isdigit(ch))
3628 if (ksh_isdigit(ch))
H A Dsh.h233 #define ksh_isdigit(c) (((c) >= '0') && ((c) <= '9')) macro

Completed in 272 milliseconds