Add wcstoull function

This commit is contained in:
Alan Carvalho de Assis
2017-03-08 13:28:50 -06:00
committed by Gregory Nutt
parent d9bfcfc330
commit d43380d543
4 changed files with 66 additions and 3 deletions
+1
View File
@@ -116,6 +116,7 @@ namespace std
using ::wcstol;
using ::wcstoll;
using ::wcstoul;
using ::wcstoull;
using ::wcswcs;
using ::wcswidth;
using ::wcsxfrm;
+1
View File
@@ -225,6 +225,7 @@ long int wcstol(FAR const wchar_t *, FAR wchar_t **, int);
long double wcstold(FAR const wchar_t *, FAR wchar_t **);
long long int wcstoll(FAR const wchar_t *, FAR wchar_t **, int);
unsigned long int wcstoul(FAR const wchar_t *, FAR wchar_t **, int);
unsigned long long int wcstoull(FAR const wchar_t *, FAR wchar_t **, int);
FAR wchar_t *wcswcs(FAR const wchar_t *, FAR const wchar_t *);
int wcswidth(FAR const wchar_t *, size_t);
size_t wcsxfrm(wchar_t *, FAR const wchar_t *, size_t);