1ISBLANK(3P) POSIX Programmer's Manual ISBLANK(3P)
2
3
4
6 This manual page is part of the POSIX Programmer's Manual. The Linux
7 implementation of this interface may differ (consult the corresponding
8 Linux manual page for details of Linux behavior), or the interface may
9 not be implemented on Linux.
10
12 isblank - test for a blank character
13
15 #include <ctype.h>
16
17 int isblank(int c);
18
19
21 The isblank() function shall test whether c is a character of class
22 blank in the program's current locale; see the Base Definitions volume
23 of IEEE Std 1003.1-2001, Chapter 7, Locale.
24
25 The c argument is a type int, the value of which the application shall
26 ensure is a character representable as an unsigned char or equal to the
27 value of the macro EOF. If the argument has any other value, the behav‐
28 ior is undefined.
29
31 The isblank() function shall return non-zero if c is a <blank>; other‐
32 wise, it shall return 0.
33
35 No errors are defined.
36
37 The following sections are informative.
38
40 None.
41
43 To ensure applications portability, especially across natural lan‐
44 guages, only this function and those listed in the SEE ALSO section
45 should be used for character classification.
46
48 None.
49
51 None.
52
54 isalnum(), isalpha(), iscntrl(), isdigit(), isgraph(), islower(),
55 isprint(), ispunct(), isspace(), isupper(), isxdigit(), setlocale(),
56 the Base Definitions volume of IEEE Std 1003.1-2001, Chapter 7, Locale,
57 <ctype.h>
58
60 Portions of this text are reprinted and reproduced in electronic form
61 from IEEE Std 1003.1, 2003 Edition, Standard for Information Technology
62 -- Portable Operating System Interface (POSIX), The Open Group Base
63 Specifications Issue 6, Copyright (C) 2001-2003 by the Institute of
64 Electrical and Electronics Engineers, Inc and The Open Group. In the
65 event of any discrepancy between this version and the original IEEE and
66 The Open Group Standard, the original IEEE and The Open Group Standard
67 is the referee document. The original Standard can be obtained online
68 at http://www.opengroup.org/unix/online.html .
69
70
71
72IEEE/The Open Group 2003 ISBLANK(3P)