aboutsummaryrefslogtreecommitdiff
path: root/include/wchar.h
diff options
context:
space:
mode:
authorTim J. Robbins <tjr@FreeBSD.org>2002-09-07 08:16:57 +0000
committerTim J. Robbins <tjr@FreeBSD.org>2002-09-07 08:16:57 +0000
commit9ad391340ed786640390cea55667544e006f26fd (patch)
tree49e8d1741a27d8cd85e8c77ca2c73c7e807e22fa /include/wchar.h
parent1bd5f7392d3f21968683994b6844542922378fc3 (diff)
downloadsrc-9ad391340ed786640390cea55667544e006f26fd.tar.gz
src-9ad391340ed786640390cea55667544e006f26fd.zip
Add an implementation of wcstok(), based on strtok_r().
Notes
Notes: svn path=/head/; revision=103067
Diffstat (limited to 'include/wchar.h')
-rw-r--r--include/wchar.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/wchar.h b/include/wchar.h
index b49191e4f04e..81c27fd44c1f 100644
--- a/include/wchar.h
+++ b/include/wchar.h
@@ -146,6 +146,8 @@ size_t wcsrtombs(char * __restrict, const wchar_t ** __restrict, size_t,
size_t wcsspn(const wchar_t *, const wchar_t *);
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);
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);