poll tests: Avoid test failure on BSD and Solaris systems.
[gnulib.git] / doc / posix-functions / wcstok.texi
blobae921633cfff0572ba53c910c3655b26ace901b6
1 @node wcstok
2 @section @code{wcstok}
3 @findex wcstok
5 POSIX specification:@* @url{https://pubs.opengroup.org/onlinepubs/9699919799/functions/wcstok.html}
7 Gnulib module: wcstok
9 Portability problems fixed by Gnulib:
10 @itemize
11 @item
12 This function is missing on some platforms:
13 Cygwin 1.5.x.
14 @item
15 This function takes only two arguments on some platforms:
16 mingw, older MSVC.
17 @item
18 This function may use hidden state, ignoring the third argument, and thus
19 exhibit a bug when two or more @code{wcstok} iteration loops are being performed
20 in the same thread, on some platforms:
21 HP-UX 11.31.
22 @end itemize
24 Portability problems not fixed by Gnulib:
25 @itemize
26 @item
27 On Windows and 32-bit AIX platforms, @code{wchar_t} is a 16-bit type and therefore cannot
28 accommodate all Unicode characters.
29 @end itemize