allwinner_a64/android/external/syslinux/com32/lib/atox.c
2018-08-08 16:14:42 +08:00

14 lines
210 B
C

/*
* atox.c
*
* atoi(), atol(), atoll()
*/
#include <inttypes.h>
#include <stdlib.h>
#include <stdio.h>
TYPE NAME(const char *nptr)
{
return (TYPE) strntoumax(nptr, (char **)NULL, 10, ~(size_t) 0);
}