This repository has been archived on 2023-08-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files

14 lines
218 B
C

/*
* 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);
}