summaryrefslogtreecommitdiff
path: root/com32/lib/strntoimax.c
blob: a3f40100ebfb2bf10acdeaef43fc059229a40fac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * 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);
}