blob: 56f8d93b40039ed92485df1571c8630f1c4dbabc [file] [log] [blame]
/*
* 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);
}