From 9445b1b57c60e2d91eb84dc04974ec9c70e7f6c0 Mon Sep 17 00:00:00 2001 From: tjr Date: Sat, 7 Sep 2002 08:16:57 +0000 Subject: Add an implementation of wcstok(), based on strtok_r(). --- include/wchar.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include/wchar.h') diff --git a/include/wchar.h b/include/wchar.h index b49191e..81c27fd 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); -- cgit v1.1