Sign in
googlers
/
maze
/
klibc
/
ad6cb3fea7ce96aec76b3d147a43fb330a7ccf93
/
.
/
strtox.c
blob: 7c228b6fa4fdd80d0615b89899e52aa37986d0d6 [
file
] [
log
] [
blame
]
/*
* 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
);
}