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

#define isspace iswspace

unsigned long long int wcstoull(const wchar_t * restrict nptr, wchar_t ** restrict endptr, int base)
{
	unsigned long long int ret = 0;
	unsigned long long int max = ULLONG_MAX;
	unsigned long long int min = 0;

	#include "../stdlib/_strtoi.h"

	return ret;
}

/*
STDC(199901)
*/