1ISWBLANK(P) POSIX Programmer's Manual ISWBLANK(P)
2
3
4
6 iswblank - test for a blank wide-character code
7
9 #include <wctype.h>
10
11 int iswblank(wint_t wc);
12
13
15 The iswblank() function shall test whether wc is a wide-character code
16 representing a character of class blank in the program's current
17 locale; see the Base Definitions volume of IEEE Std 1003.1-2001, Chap‐
18 ter 7, Locale.
19
20 The wc argument is a wint_t, the value of which the application shall
21 ensure is a wide-character code corresponding to a valid character in
22 the current locale, or equal to the value of the macro WEOF. If the
23 argument has any other value, the behavior is undefined.
24
26 The iswblank() function shall return non-zero if wc is a blank wide-
27 character code; otherwise, it shall return 0.
28
30 No errors are defined.
31
32 The following sections are informative.
33
35 None.
36
38 To ensure applications portability, especially across natural lan‐
39 guages, only this function and those listed in the SEE ALSO section
40 should be used for classification of wide-character codes.
41
43 None.
44
46 None.
47
49 iswalnum() , iswalpha() , iswcntrl() , iswctype() , iswdigit() , isw‐
50 graph() , iswlower() , iswprint() , iswpunct() , iswspace() , iswup‐
51 per() , iswxdigit() , setlocale() , the Base Definitions volume of
52 IEEE Std 1003.1-2001, Chapter 7, Locale, <stdio.h>, <wchar.h>,
53 <wctype.h>
54
56 Portions of this text are reprinted and reproduced in electronic form
57 from IEEE Std 1003.1, 2003 Edition, Standard for Information Technology
58 -- Portable Operating System Interface (POSIX), The Open Group Base
59 Specifications Issue 6, Copyright (C) 2001-2003 by the Institute of
60 Electrical and Electronics Engineers, Inc and The Open Group. In the
61 event of any discrepancy between this version and the original IEEE and
62 The Open Group Standard, the original IEEE and The Open Group Standard
63 is the referee document. The original Standard can be obtained online
64 at http://www.opengroup.org/unix/online.html .
65
66
67
68IEEE/The Open Group 2003 ISWBLANK(P)