This repository has been archived on 2023-08-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
RescueBootCD/extra/syslinux-3.09/com32/lib/strtox.c

14 lines
229 B
C

/*
* 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);
}