summaryrefslogtreecommitdiff
path: root/src/wchar/wcstoul.c
blob: bf5771d9f6161e4aa464a615bcab154b11b2a7ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#if 0

#include <wchar.h>
#include <wctype.h>
#include <limits.h>
#include <errno.h>

#define isspace iswspace

unsigned long int wcstoul(const wchar_t * restrict nptr, wchar_t ** restrict endptr, int base)
{
	SIGNAL_SAFE(0);
	/* TODO: overlap */

	unsigned long int ret = 0;
	unsigned long int max = ULONG_MAX;
	unsigned long int min = 0;

	#include "stdlib/_strtoi.h"

	return ret;
}

/*
STDC(199409)
*/


#endif