mirror of
https://github.com/apache/nuttx.git
synced 2026-06-08 10:32:47 +08:00
Add wcstoull function
This commit is contained in:
committed by
Gregory Nutt
parent
d9bfcfc330
commit
d43380d543
@@ -116,6 +116,7 @@ namespace std
|
||||
using ::wcstol;
|
||||
using ::wcstoll;
|
||||
using ::wcstoul;
|
||||
using ::wcstoull;
|
||||
using ::wcswcs;
|
||||
using ::wcswidth;
|
||||
using ::wcsxfrm;
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user