blob: 60c4a4751ea6761a9b67da02b1408c6049499a9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include <wchar.h>
#include "limits.h"
#include "errno.h"
long long int wcstoll(const wchar_t * restrict nptr, wchar_t ** restrict endptr, int base)
{
long long int ret = 0;
long long int max = LLONG_MAX;
long long int min = LLONG_MIN;
#include "../stdlib/_strtoi.h"
return ret;
}
/*
STDC(199901)
*/
|