Sign in
kernel
/
pub
/
scm
/
linux
/
kernel
/
git
/
bwh
/
klibc
/
201dabf78546ca712d3541670a5d898dc199854e
/
.
/
usr
/
klibc
/
atox.c
blob: c013bb47618ce69036dad14e3a62c33b6c81a08d [
file
] [
log
] [
blame
]
/*
* 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
);
}