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

13 lines
231 B
C

/*
* strtox.c
*
* strto...() functions, by macro definition
*/
#include <stddef.h>
#include <inttypes.h>
TYPE NAME(const char *nptr, char **endptr, int base)
{
return (TYPE) strntoumax(nptr, endptr, base, ~(size_t) 0);
}