blob: a385e4e72f9b4ee1738441b63f1496050dd55f60 (
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
32
33
|
#if 0
#include <wctype.h>
#include <wchar.h>
#include "_assert.h"
/** test whether a wide character is a control character */
int iswcntrl(wint_t wc)
{
ASSERT_REPRESENTABLE(wc, WCHAR_MIN, WCHAR_MAX, "wchar_t", WEOF);
wctype_t cntrl = wctype("cntrl");
return iswctype(wc, cntrl);
}
/***
The fn(iswcntrl) function tests whether arg(wc) is a wide character in the class
cclass(cntrl) in the current locale.
***/
/* RETURN(NZ): arg(wc) is a control character */
/* RETURN(0): arg(wc) is not a control character */
/* UNSPECIFIED: - */
/* IMPLEMENTATION: - */
/* LOCALE: LC_CTYPE */
/*
STDC(199409)
*/
#endif
|