blob: a3acf6cbdb2c810ac7ee229d2ad876d61b23e0f3 [file] [log] [blame]
/*
* atox.c
*
* atoi(), atol(), atoll()
*/
#include <inttypes.h>
#include <stdlib.h>
TYPE NAME (const char *nptr)
{
return (TYPE) strntoumax(nptr, (char **)NULL, 10, ~(size_t)0);
}