summaryrefslogtreecommitdiff
path: root/src/wctype/iswprint.c
blob: cd2392ea8e8b3b641831db3a99da9ef7b38939d8 (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 "_assert.h"

/** test whether a wide character is printable **/
int iswprint(wint_t wc)
{
	ASSERT_REPRESENTABLE(wc, WCHAR_MIN, WCHAR_MAX, "wchar_t", WEOF);

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

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

/* RETURN(NZ): arg(c) is a printable character */
/* RETURN(0): arg(c) is not a printable character */

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

/*
STDC(199409)
*/