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

15 lines
208 B
C

/*
* atox.c
*
* atoi(), atol(), atoll()
*/
#include <inttypes.h>
#include <stdlib.h>
#include <stdio.h>
TYPE NAME (const char *nptr)
{
return (TYPE) strntoumax(nptr, (char **)NULL, 10, ~(size_t)0);
}