Sign in
apache
/
mynewt-core
/
HEAD
/
.
/
libc
/
baselibc
/
src
/
strntoimax.c
blob: 43a15cf1766e60ce212fe23ea94c76bc67d3423e [
file
] [
log
] [
blame
]
/*
* strntoimax.c
*
* strntoimax()
*/
#include
<stddef.h>
#include
<strntoimax.h>
intmax_t
strntoimax
(
const
char
*
nptr
,
char
**
endptr
,
int
base
,
size_t
n
)
{
return
(
intmax_t
)
strntoumax
(
nptr
,
endptr
,
base
,
n
);
}