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