summaryrefslogtreecommitdiff
path: root/src/inttypes/wcstoumax.c
blob: 4ace23d0bab2f170d216692d4124c650df7b0692 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include "stddef.h"
#include <inttypes.h>
#include "errno.h"
#include "wctype.h"

#define isspace iswspace

uintmax_t wcstoumax(const wchar_t * restrict nptr, wchar_t ** 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)
*/