diff options
Diffstat (limited to 'contrib/syslinux-4.02/com32/lib/strtox.c')
-rw-r--r-- | contrib/syslinux-4.02/com32/lib/strtox.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/contrib/syslinux-4.02/com32/lib/strtox.c b/contrib/syslinux-4.02/com32/lib/strtox.c new file mode 100644 index 0000000..e01247a --- /dev/null +++ b/contrib/syslinux-4.02/com32/lib/strtox.c @@ -0,0 +1,13 @@ +/* + * 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); +} |