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