Searched refs:ksh_isdigit (Results 1 – 12 of 12) sorted by relevance
240 if (ksh_isdigit(c)) { in global()241 for (c = 0; ksh_isdigit(*n); n++) in global()497 if (Flag(FPOSIX) && arith && s[0] == '0' && ksh_isdigit(s[1]) && in getint()529 } else if (ksh_isdigit(c)) in getint()730 if (!ksh_isdigit(val[i])) in typeset()
460 } else if (ksh_isdigit(c) || in yylex()922 if (!ksh_isdigit(dp[c2 + 1])) in yylex()1596 else if (ksh_isdigit(c)) in get_brace_var()1635 if (!ksh_isdigit(c)) in get_brace_var()
1075 while (ksh_isdigit(*s)) { in parse_usec()1096 while (ksh_isdigit(*s)) { in parse_usec()1103 while (ksh_isdigit(*s)) in parse_usec()
852 if (ksh_isdigit(c)) { in shf_vfprintf()856 while (c = *fmt++, ksh_isdigit(c)) { in shf_vfprintf()
552 if (!ksh_isdigit(c)) in getn()1093 if (ksh_isdigit(argv[go->optind - 1][go->p])) { in ksh_getopt()1099 if (argv[go->optind] && ksh_isdigit(argv[go->optind][0])) { in ksh_getopt()
1306 if ((p = wp[1]) && *p == '-' && (ksh_isdigit(p[1]) || in c_kill()1636 if (ksh_isdigit(*cp)) { in c_umask()3606 if (!rval && !ksh_isdigit(v[0])) { in set_ulimit()
681 } else if (ksh_isdigit(c)) { in exprtoken()
1080 if (ksh_isdigit(*cs)) { in gettrap()
2982 while (c >= 0 && ksh_isdigit(c)) { in x_set_arg()3689 if (ksh_isdigit(ch)) in vi_hook()3715 if (ksh_isdigit(ch)) in vi_hook()
1506 for (fd = 0; ksh_isdigit(*name); ++name) in check_fd()
1579 if (ksh_isdigit(*cp)) { in j_lookup()
296 #define ksh_isdigit(c) (((c) >= '0') && ((c) <= '9')) macro