The Single UNIX ® Specification, Version 2
Copyright © 1997 The Open Group

 NAME

iswgraph - test for a visible wide-character code

 SYNOPSIS



#include <wctype.h>

int iswgraph(wint_t wc);

 DESCRIPTION

The iswgraph() function tests whether wc is a wide-character code representing a character of class graph in the program's current locale, see the XBD specification, Locale .

In all cases wc is a wint_t, the value of which must be a wide-character code corresponding to a valid character in the current locale or must equal the value of the macro WEOF. If the argument has any other value, the behaviour is undefined.

 RETURN VALUE

The iswgraph() function returns non-zero if wc is a wide-character code with a visible representation; otherwise it returns 0.

 ERRORS

No errors are defined.

 EXAMPLES

None.

 APPLICATION USAGE

To ensure applications portability, especially across natural languages, only this function and those listed in the SEE ALSO section should be used for classification of wide-character codes.

 FUTURE DIRECTIONS

None.

 SEE ALSO

iswalnum(), iswalpha(), iswcntrl(), iswdigit(), iswlower(), iswprint(), iswpunct(), iswspace(), iswupper(), iswxdigit(), setlocale(), <wctype.h>, <wchar.h>, the XBD specification, Locale .

UNIX ® is a registered Trademark of The Open Group.
Copyright © 1997 The Open Group
[ Main Index | XSH | XCU | XBD | XCURSES | XNS ]