blob: 753f9b41f0312c55d94f780895c4032547bcb24e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#include <wctype.h>
#include "../_assert.h"
/** test whether a wide character is blank **/
int iswblank(wint_t wc)
{
ASSERT_REPRESENTABLE(wc, WCHAR_MIN, WCHAR_MAX, "wchar_t", WEOF);
wctype_t blank = wctype("blank");
return iswctype(wc, blank);
}
/***
The fn(iswblank) functions tests whether a wide character is a of the character
class cclass(blank) in the current locale.
***/
/* RETURN(NZ): arg(wc) is a blank character */
/* RETURN(0): arg(wc) is not a blank character */
/* UNSPECIFIED: - */
/* IMPLEMENTATION: - */
/* LOCALE: LC_CTYPE */
/*
STDC(199901)
*/
|