(2006-08-06) rescue-bootcd
This commit is contained in:
13
extra/syslinux-3.09/com32/lib/strtox.c
Normal file
13
extra/syslinux-3.09/com32/lib/strtox.c
Normal file
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user