From e1477898d0203dae4b2fe9ad62998bc27d4b4fc9 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Wed, 27 Feb 2019 19:17:39 -0500 Subject: add common _strtoi function body --- src/wchar/wcstoll.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/wchar/wcstoll.c') diff --git a/src/wchar/wcstoll.c b/src/wchar/wcstoll.c index fc231433..60c4a475 100644 --- a/src/wchar/wcstoll.c +++ b/src/wchar/wcstoll.c @@ -1,7 +1,16 @@ #include +#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; } /* -- cgit v1.2.1