summaryrefslogtreecommitdiffstats
path: root/include/wchar.h
diff options
context:
space:
mode:
authortjr <tjr@FreeBSD.org>2002-09-08 13:27:26 +0000
committertjr <tjr@FreeBSD.org>2002-09-08 13:27:26 +0000
commit7c848d9cfdfd6a6fc3d9fbd2a9df0f0ce98daf36 (patch)
tree123defa0ff371fc4de0b179b61d61b21738d69af /include/wchar.h
parentc2312179026df4fea7e502f5e0ee773cc6fb0d79 (diff)
downloadFreeBSD-src-7c848d9cfdfd6a6fc3d9fbd2a9df0f0ce98daf36.zip
FreeBSD-src-7c848d9cfdfd6a6fc3d9fbd2a9df0f0ce98daf36.tar.gz
Add wcstol() and wcstoul(), based on strtol() and strtoul().
Diffstat (limited to 'include/wchar.h')
-rw-r--r--include/wchar.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/wchar.h b/include/wchar.h
index 81c27fd..335e4b2 100644
--- a/include/wchar.h
+++ b/include/wchar.h
@@ -148,6 +148,9 @@ wchar_t *wcsstr(const wchar_t * __restrict, const wchar_t * __restrict);
int wctob(wint_t);
wchar_t *wcstok(wchar_t * __restrict, const wchar_t * __restrict,
wchar_t ** __restrict);
+long wcstol(const wchar_t * __restrict, wchar_t ** __restrict, int);
+unsigned long
+ wcstoul(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