| /ast/src/lib/libast/string/ |
| H A D | strton.c | 23 * strton() implementation 26 #define S2I_function strton
|
| H A D | strexpr.c | 247 if (isdigit(c)) n = strton(ex->nextchr, &ex->nextchr, NiL, 0);
|
| /ast/src/lib/libast/misc/ |
| H A D | recstr.c | 76 n = strton(s, &t, NiL, 0);
|
| /ast/src/cmd/tests/ |
| H A D | strtoi.c | 27 * strtol strtoul strton 73 strton(const char* s, char** e, char* b, int m) function 144 l = strton(s, &p, &b, m); 145 printf("strton \"%s\" \"%s\" %ld %s %d\n", s, p, l, errno == 0 ? "OK" : errno == ERANGE ? "ERANGE" : errno == EINVAL ? "EINVAL" : "ERROR", b);
|
| /ast/src/lib/libast/astsa/ |
| H A D | ast.h | 115 #define strton(s,t,b,f) strtol(s,t,0) macro
|
| /ast/src/cmd/codexlib/bzip/ |
| H A D | bzip.c | 51 v = strton(s, &e, NiL, 0);
|
| /ast/src/cmd/codexlib/gzip/ |
| H A D | gzip.c | 53 v = strton(s, &e, NiL, 0);
|
| /ast/src/cmd/sort/ |
| H A D | gen.c | 136 state.range[c].min = strton(opt_info.arg, &e, NiL, 0); 138 state.range[c].max = strton(e + 1, NiL, NiL, 0);
|
| H A D | main.c | 567 z = strton(s, &e, NiL, 1); 656 opt_info.num = strton(s, &e, NiL, 1);
|
| /ast/src/cmd/ksh93/bltins/ |
| H A D | ulimit.c | 145 else if((i=strton(limit,&last,NiL,0))==INFINITY || *last)
|
| /ast/src/lib/libast/include/ |
| H A D | ast.h | 358 extern long strton(const char*, char**, char*, int);
|
| /ast/src/cmd/dsslib/ip_t/ |
| H A D | ire.c | 111 n = strton(s, &p, NiL, 0);
|
| /ast/src/cmd/nmake/ |
| H A D | expand.c | 96 long na = strton(a, NiL, NiL, 0); 97 long nb = strton(b, NiL, NiL, 0); 99 na = strton(a, &ea, NiL, 0); 100 nb = strton(b, &eb, NiL, 0);
|
| /ast/src/cmd/ss/ |
| H A D | ssd.c | 618 ss.load = strton(s + 1, NiL, NiL, 100);
|
| /ast/src/cmd/codexlib/compress/ |
| H A D | compress.c | 459 else if ((maxbits = strton(s, &e, NiL, 0)) < MINBITS || maxbits > MAXBITS || *e)
|
| /ast/src/lib/libast/ |
| H A D | Makefile | 62 strperm.3 strsignal.3 strsort.3 strtape.3 strton.3 struid.3 \ 112 strtol.c strtoll.c strtoul.c strtoull.c strton.c strtonll.c \
|
| /ast/src/cmd/builtin/ |
| H A D | od.c | 782 n = (int)strton(t, &e, NiL, 1); 1370 state.buffer.size = strton(s, &e, NiL, 1);
|
| /ast/src/lib/libpz/ |
| H A D | pzsplit.c | 143 if (!use && (!(dp->pz->test & 04) || !(file = getenv("_AST_pzip_debug_use")) || !(use = strton(file, NiL, NiL, 1))))
|
| H A D | pzpart.c | 564 if (pz->prefix.count = strton(opt_info.arg, &e, NiL, 0))
|
| /ast/src/cmd/kshlib/cmdtst/ |
| H A D | grep.c | 756 state.buffer.size = strton(s, &s, NiL, 1);
|
| /ast/src/cmd/re/ |
| H A D | grep.c | 714 state.buffer.size = strton(s, &s, NiL, 1);
|
| /ast/src/cmd/codexlib/lzh/ |
| H A D | lzh.c | 1123 if ((w = strton(args[0], &s, NiL, 0)) < WINDOW_MIN || w > WINDOW_MAX || *s)
|