Sign in
android
/
platform
/
external
/
syslinux
/
refs/heads/oreo-mr1-release
/
.
/
com32
/
lib
/
atox.c
blob: e9917cd638bd4cdee5c854a74efcf1419083cb44 [
file
] [
log
] [
blame
] [
edit
]
/*
* atox.c
*
* atoi(), atol(), atoll()
*/
#include
<inttypes.h>
#include
<stdlib.h>
#include
<stdio.h>
TYPE NAME
(
const
char
*
nptr
)
{
return
(
TYPE
)
strntoumax
(
nptr
,
(
char
**)
NULL
,
10
,
~(
size_t
)
0
);
}