summaryrefslogtreecommitdiff
path: root/src/stdlib/strtoull.c
blob: 6f9bfe4632ba9c70b62ee4f1fb325b6072e4bd32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <stdlib.h>
#include "ctype.h"
#include "limits.h"
#include "errno.h"

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

	#include "_strtoi.h"

	return ret;
}

/*
STDC(199901)
*/