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