Sign in
android
/
platform
/
external
/
syslinux
/
refs/heads/oreo-mr1-release
/
.
/
com32
/
lib
/
strtox.c
blob: e01247acb16e54db1470cbc38c476d3dc8386471 [
file
] [
log
] [
blame
] [
edit
]
/*
* 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
);
}