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