1ISGRAPH(3P)                POSIX Programmer's Manual               ISGRAPH(3P)
2
3
4

PROLOG

6       This  manual  page is part of the POSIX Programmer's Manual.  The Linux
7       implementation of this interface may differ (consult the  corresponding
8       Linux  manual page for details of Linux behavior), or the interface may
9       not be implemented on Linux.
10

NAME

12       isgraph - test for a visible character
13

SYNOPSIS

15       #include <ctype.h>
16
17       int isgraph(int c);
18
19

DESCRIPTION

21       The isgraph() function shall test whether c is  a  character  of  class
22       graph  in the program's current locale; see the Base Definitions volume
23       of IEEE Std 1003.1-2001, Chapter 7, Locale.
24
25       The c argument is an int, the value  of  which  the  application  shall
26       ensure is a character representable as an unsigned char or equal to the
27       value of the macro EOF. If the argument has any other value, the behav‐
28       ior is undefined.
29

RETURN VALUE

31       The isgraph() function shall return non-zero if c is a character with a
32       visible representation; otherwise, it shall return 0.
33

ERRORS

35       No errors are defined.
36
37       The following sections are informative.
38

EXAMPLES

40       None.
41

APPLICATION USAGE

43       To ensure applications  portability,  especially  across  natural  lan‐
44       guages,  only  this  function  and those listed in the SEE ALSO section
45       should be used for character classification.
46

RATIONALE

48       None.
49

FUTURE DIRECTIONS

51       None.
52

SEE ALSO

54       isalnum(),  isalpha(),  iscntrl(),  isdigit(),  islower(),   isprint(),
55       ispunct(), isspace(), isupper(), isxdigit(), setlocale(), the Base Def‐
56       initions volume of IEEE Std 1003.1-2001, Chapter 7, Locale, <ctype.h>
57
59       Portions of this text are reprinted and reproduced in  electronic  form
60       from IEEE Std 1003.1, 2003 Edition, Standard for Information Technology
61       -- Portable Operating System Interface (POSIX),  The  Open  Group  Base
62       Specifications  Issue  6,  Copyright  (C) 2001-2003 by the Institute of
63       Electrical and Electronics Engineers, Inc and The Open  Group.  In  the
64       event of any discrepancy between this version and the original IEEE and
65       The Open Group Standard, the original IEEE and The Open Group  Standard
66       is  the  referee document. The original Standard can be obtained online
67       at http://www.opengroup.org/unix/online.html .
68
69
70
71IEEE/The Open Group                  2003                          ISGRAPH(3P)
Impressum