Sign in
android
/
platform
/
external
/
syslinux
/
refs/heads/oreo-mr1-release
/
.
/
com32
/
lib
/
strntoimax.c
blob: a3f40100ebfb2bf10acdeaef43fc059229a40fac [
file
] [
log
] [
blame
] [
edit
]
/*
* strntoimax.c
*
* strntoimax()
*/
#include
<stddef.h>
#include
<inttypes.h>
intmax_t
strntoimax
(
const
char
*
nptr
,
char
**
endptr
,
int
base
,
size_t
n
)
{
return
(
intmax_t
)
strntoumax
(
nptr
,
endptr
,
base
,
n
);
}