summaryrefslogtreecommitdiffstats
path: root/include/wchar.h
diff options
context:
space:
mode:
authortjr <tjr@FreeBSD.org>2002-09-22 08:06:45 +0000
committertjr <tjr@FreeBSD.org>2002-09-22 08:06:45 +0000
commit491569a0a72f41a57e60f55bdf7a63bbe3bd6726 (patch)
tree5ee7bfdb36ea94c32bdd040617940cdebb4326a1 /include/wchar.h
parent4a0f4fc5b5b2985b80e2014040f5d55be76d8e96 (diff)
downloadFreeBSD-src-491569a0a72f41a57e60f55bdf7a63bbe3bd6726.zip
FreeBSD-src-491569a0a72f41a57e60f55bdf7a63bbe3bd6726.tar.gz
Add the remaining C99 wide character string to integer conversion functions.
Restrict qualifiers were added to the existing prototypes in <inttypes.h> and the typedef for wchar_t was removed.
Diffstat (limited to 'include/wchar.h')
-rw-r--r--include/wchar.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/wchar.h b/include/wchar.h
index e490242..f322614 100644
--- a/include/wchar.h
+++ b/include/wchar.h
@@ -154,8 +154,12 @@ double wcstod(const wchar_t * __restrict, wchar_t ** __restrict);
wchar_t *wcstok(wchar_t * __restrict, const wchar_t * __restrict,
wchar_t ** __restrict);
long wcstol(const wchar_t * __restrict, wchar_t ** __restrict, int);
+long long
+ wcstoll(const wchar_t * __restrict, wchar_t ** __restrict, int);
unsigned long
wcstoul(const wchar_t * __restrict, wchar_t ** __restrict, int);
+unsigned long long
+ wcstoull(const wchar_t * __restrict, wchar_t ** __restrict, int);
wchar_t *wmemchr(const wchar_t *, wchar_t, size_t);
int wmemcmp(const wchar_t *, const wchar_t *, size_t);
wchar_t *wmemcpy(wchar_t * __restrict, const wchar_t * __restrict, size_t);
OpenPOWER on IntegriCloud