summaryrefslogtreecommitdiff
path: root/src/wctype/iswspace.c
blob: c95a4e1d5f506690a8aa8f9e3f5cd91b463c7920 (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
28
29
30
31
#include <wctype.h>
#include <wchar.h>
#include "_wctype.h"

/** test whether a wide character is white-space **/
int iswspace(wint_t wc)
{
	SIGNAL_SAFE(0);
	ASSERT_REPRESENTABLE(wc, WCHAR_MIN, WCHAR_MAX, "wchar_t", WEOF);

	wctype_t space = wctype("space");
	return iswctype(wc, space);
}

__check_1(int, 0, iswspace, wint_t)

/***
The fn(iswspace) function tests whether arg(wc) is a wide character in the class
cclass(space) in the current locale.
***/

/* RETURN(NZ): arg(wc) is a white-space character */
/* RETURN(0): arg(wc) is not a white-space character */

/* UNSPECIFIED: - */
/* IMPLEMENTATION: - */
/* LOCALE: LC_CTYPE */

/*
STDC(199409)
*/