Adding upstream version 3.35.
[syslinux-debian/hramrach.git] / com32 / lib / strtox.c
blob7c228b6fa4fdd80d0615b89899e52aa37986d0d6
1 /*
2 * strtox.c
4 * strto...() functions, by macro definition
5 */
7 #include <stddef.h>
8 #include <inttypes.h>
10 TYPE NAME (const char *nptr, char **endptr, int base)
12 return (TYPE) strntoumax(nptr, endptr, base, ~(size_t)0);