mirror of
https://github.com/UzixLS/KernelEx.git
synced 2025-07-18 23:11:19 +03:00
15 lines
205 B
C
Executable File
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);
|
|
}
|