1
0
mirror of https://github.com/UzixLS/KernelEx.git synced 2025-07-18 23:11:19 +03:00
Files
KernelEx/kexcrt/atox.c
2018-11-03 16:21:13 +03:00

15 lines
205 B
C
Executable File

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