source:
bootcd/isolinux/syslinux-6.03/com32/lib/atox.c
Last change on this file was e16e8f2, checked in by , 3 years ago | |
---|---|
|
|
File size: 210 bytes |
Rev | Line | |
---|---|---|
[e16e8f2] | 1 | /* |
2 | * atox.c | |
3 | * | |
4 | * atoi(), atol(), atoll() | |
5 | */ | |
6 | ||
7 | #include <inttypes.h> | |
8 | #include <stdlib.h> | |
9 | #include <stdio.h> | |
10 | ||
11 | TYPE NAME(const char *nptr) | |
12 | { | |
13 | return (TYPE) strntoumax(nptr, (char **)NULL, 10, ~(size_t) 0); | |
14 | } |
Note: See TracBrowser
for help on using the repository browser.