Adding upstream version 3.35.
[syslinux-debian/hramrach.git] / com32 / lib / atox.c
blob56f8d93b40039ed92485df1571c8630f1c4dbabc
1 /*
2 * atox.c
4 * atoi(), atol(), atoll()
5 */
7 #include <inttypes.h>
8 #include <stdlib.h>
9 #include <stdio.h>
11 TYPE NAME (const char *nptr)
13 return (TYPE) strntoumax(nptr, (char **)NULL, 10, ~(size_t)0);