blob: 179d9e5f0520332cf8ff27d8f5879b745c5add60 [file] [log] [blame]
/*
* 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);
}