summaryrefslogtreecommitdiff
path: root/src/ctype/iswgraph.c
blob: fdc978535b1e7ab0fdc5e0c7f3d9c6befd8c855c (plain) (blame)
1
2
3
4
5
6
7
#include <wctype.h>

int iswgraph(wint_t wc)
{
	/* ISO C defines this function as: */
	return !iswspace(wc) && iswprint(wc);
}