date and time created 91/05/02 04:12:55 by cael
authorCynthia A. E. Livingston <cael@ucbvax.Berkeley.EDU>
Thu, 2 May 1991 19:12:55 +0000 (11:12 -0800)
committerCynthia A. E. Livingston <cael@ucbvax.Berkeley.EDU>
Thu, 2 May 1991 19:12:55 +0000 (11:12 -0800)
SCCS-vsn: lib/libc/locale/isgraph.3 5.1

usr/src/lib/libc/locale/isgraph.3 [new file with mode: 0644]

diff --git a/usr/src/lib/libc/locale/isgraph.3 b/usr/src/lib/libc/locale/isgraph.3
new file mode 100644 (file)
index 0000000..70cc4e2
--- /dev/null
@@ -0,0 +1,48 @@
+.\" Copyright (c) 1991 The Regents of the University of California.
+.\" All rights reserved.
+.\"
+.\" %sccs.include.redist.man%
+.\"
+.\"     @(#)isgraph.3  5.1 (Berkeley) %G%
+.\"
+.Dd 
+.Dt ISGRAPH 3
+.Os
+.Sh NAME
+.Nm isgraph
+.Nd printing character test (space character exculsive)
+.Sh SYNOPSIS
+.Fd #include <ctype.h>
+.Ft int
+.Fn isgraph "int c"
+.Sh DESCRIPTION
+The
+.Fn isgraph
+function tests for any printing character except space (' ').
+.Sh RETURN VALUES
+The
+.Fn isgraph
+macro returns zero if the character tests false and
+returns non-zero if the character tests true.
+.Sh SEE ALSO
+.Xr isascii 3 ,
+.Xr isalnum 3 ,
+.Xr isalpha 3 ,
+.Xr iscntrl 3 ,
+.Xr isdigit 3 ,
+.Xr islower 3 ,
+.Xr isprint 3 ,
+.Xr ispunct 3 ,
+.Xr isspace 3 ,
+.Xr isupper 3 ,
+.Xr isxdigit 3 ,
+.Xr toascii 3 ,
+.Xr tolower 3 ,
+.Xr toupper 3 ,
+.Xr stdio 3
+.Xr ascii 7
+.Sh STANDARDS
+The
+.Fn isgraph
+function conforms to
+.St -ansiC .