gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 8 of 8 for funcall:strtol (0.02 seconds)
t2ex
bsd_source/lib/libc/src_bsd/stdlib/atoi.c - 1.7KB - 37 lines
35: {
36:         return((int)strtol(str, (char **)NULL, 10));
37: }
bsd_source/lib/libc/src_bsd/stdlib/atol.c - 1.7KB - 37 lines
35: {
36:         return(strtol(str, (char **)NULL, 10));
37: }
bsd_source/t2ex/network/net/src_bsdlib/libc/nameser/ns_name.c - 43.0KB - 1,416 lines
1313:                                         return (EINVAL);
1314:                                 blen = (int)strtol(beg_blen, &end_blen, 10);
1315:                                 if (*end_blen != ']')
t2ex_source/driver/tef_em1d/netdrv/src/main.c - 9.2KB - 280 lines
212:                 case '!':             /* priority */
213:                         TskPri = strtol(arg, (VP)&arg, 0);
214:                         break;
More results from main.c
t2ex_source/kernel/sysmain/src/command.c - 24.4KB - 884 lines
272: 
273:         mode = (ac >= 3) ? strtol(av[2], NULL, 0) : 0777;
274:         er = fs_mkdir(av[1], mode);
More results from command.c
t2ex_source/kernel/sysmain/src/ref_command.c - 16.5KB - 552 lines
515:         if (ac < 2) goto usage;
516:         num = (ac >= 3) ? strtol(av[2], NULL, 0) : 0;
517: 
t2ex_source/t2ex/network/net/src/netmain/tkn_bpf.c - 4.7KB - 181 lines
147:         char *end = NULL;
148:         int no = strtol(path + len, &end, 10);
149: 
t2ex_source/t2ex/network/net/src/netmain/tkn_tun.c - 4.7KB - 181 lines
147:         char *end = NULL;
148:         int no = strtol(path + len, &end, 10);
149: