1ISWPRINT(3)                Linux Programmer's Manual               ISWPRINT(3)
2
3
4

NAME

6       iswprint - test for printing wide character
7

SYNOPSIS

9       #include <wctype.h>
10
11       int iswprint(wint_t wc);
12

DESCRIPTION

14       The  iswprint()  function  is  the  wide-character  equivalent  of  the
15       isprint() function. It tests whether wc is a wide  character  belonging
16       to the wide character class "print".
17
18       The  wide  character  class "print" is disjoint from the wide character
19       class "cntrl".
20
21       The wide character class "print"  contains  the  wide  character  class
22       "graph".
23

RETURN VALUE

25       The  iswprint()  function  returns  non-zero  if wc is a wide character
26       belonging to the wide character class  "print".  Otherwise  it  returns
27       zero.
28

CONFORMING TO

30       C99.
31

SEE ALSO

33       isprint(3), iswctype(3)
34

NOTES

36       The  behaviour  of  iswprint()  depends on the LC_CTYPE category of the
37       current locale.
38
39
40
41GNU                               1999-07-25                       ISWPRINT(3)
Impressum