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