poll tests: Avoid test failure on BSD and Solaris systems.
[gnulib.git] / doc / posix-functions / iswcntrl.texi
blob77ee13909441833b56f392f179f9182e68841440
1 @node iswcntrl
2 @section @code{iswcntrl}
3 @findex iswcntrl
5 POSIX specification:@* @url{https://pubs.opengroup.org/onlinepubs/9699919799/functions/iswcntrl.html}
7 Gnulib module: wctype-h
9 Portability problems fixed by Gnulib:
10 @itemize
11 @item
12 This function is missing on some platforms:
13 Minix 3.1.8.
14 @item
15 This function cannot be called from plain inline or extern inline functions
16 on some platforms:
17 OS X 10.8.
18 @end itemize
20 Portability problems not fixed by Gnulib:
21 @itemize
22 @item
23 On Windows and 32-bit AIX platforms, @code{wchar_t} is a 16-bit type and
24 therefore cannot accommodate all Unicode characters.
25 However, the Gnulib function @code{c32iscntrl}, provided by Gnulib module
26 @code{c32iscntrl}, operates on 32-bit wide characters and therefore does not
27 have this limitation.
28 @item
29 This function returns 0 for U+2028 (LINE SEPARATOR) and
30 U+2029 (PARAGRAPH SEPARATOR) on some platforms:
31 Mac OS X 10.13.
32 @end itemize