blob: 36032a9d6460f568d8265a1bc5cc1cb3c68eefd5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include "stddef.h"
#include <inttypes.h>
#include "ctype.h"
#include "errno.h"
intmax_t strtoimax(const char * restrict nptr, char ** restrict endptr, int base)
{
intmax_t ret = 0;
intmax_t max = INTMAX_MAX;
intmax_t min = INTMAX_MIN;
#include "stdlib/_strtoi.h"
return ret;
}
/*
STDC(199901)
*/
|