pxe: Fix recognition of keeppxe option
[syslinux.git] / com32 / lib / strtox.c
blobe01247acb16e54db1470cbc38c476d3dc8386471
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);