1994-05-27 05:00:24 +00:00
|
|
|
.\" Copyright (c) 1991, 1993
|
|
|
|
.\" The Regents of the University of California. All rights reserved.
|
|
|
|
.\"
|
|
|
|
.\" This code is derived from software contributed to Berkeley by
|
|
|
|
.\" the American National Standards Committee X3, on Information
|
|
|
|
.\" Processing Systems.
|
|
|
|
.\"
|
|
|
|
.\" Redistribution and use in source and binary forms, with or without
|
|
|
|
.\" modification, are permitted provided that the following conditions
|
|
|
|
.\" are met:
|
|
|
|
.\" 1. Redistributions of source code must retain the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer.
|
|
|
|
.\" 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer in the
|
|
|
|
.\" documentation and/or other materials provided with the distribution.
|
2017-02-28 23:42:47 +00:00
|
|
|
.\" 3. Neither the name of the University nor the names of its contributors
|
1994-05-27 05:00:24 +00:00
|
|
|
.\" may be used to endorse or promote products derived from this software
|
|
|
|
.\" without specific prior written permission.
|
|
|
|
.\"
|
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
.\" SUCH DAMAGE.
|
|
|
|
.\"
|
|
|
|
.\" @(#)isgraph.3 8.2 (Berkeley) 12/11/93
|
1999-08-28 00:22:10 +00:00
|
|
|
.\" $FreeBSD$
|
1994-05-27 05:00:24 +00:00
|
|
|
.\"
|
2012-07-30 20:56:19 +00:00
|
|
|
.Dd July 30, 2012
|
1994-05-27 05:00:24 +00:00
|
|
|
.Dt ISGRAPH 3
|
|
|
|
.Os
|
|
|
|
.Sh NAME
|
|
|
|
.Nm isgraph
|
|
|
|
.Nd printing character test (space character exclusive)
|
2000-04-21 09:42:15 +00:00
|
|
|
.Sh LIBRARY
|
|
|
|
.Lb libc
|
1994-05-27 05:00:24 +00:00
|
|
|
.Sh SYNOPSIS
|
2001-10-01 16:09:29 +00:00
|
|
|
.In ctype.h
|
1994-05-27 05:00:24 +00:00
|
|
|
.Ft int
|
1997-04-13 12:55:36 +00:00
|
|
|
.Fn isgraph "int c"
|
2012-07-30 20:56:19 +00:00
|
|
|
.Ft int
|
|
|
|
.Fn isgraph_l "int c" "locale_t loc"
|
1994-05-27 05:00:24 +00:00
|
|
|
.Sh DESCRIPTION
|
|
|
|
The
|
|
|
|
.Fn isgraph
|
2001-12-12 13:42:25 +00:00
|
|
|
function tests for any printing character except space
|
2010-08-02 13:11:35 +00:00
|
|
|
.Pq Ql "\~"
|
2001-12-12 13:42:25 +00:00
|
|
|
and other
|
2009-11-13 09:03:50 +00:00
|
|
|
locale-specific space-like characters.
|
2005-07-17 04:11:06 +00:00
|
|
|
The value of the argument must be representable as an
|
2005-11-17 13:00:00 +00:00
|
|
|
.Vt "unsigned char"
|
2000-04-11 14:41:37 +00:00
|
|
|
or the value of
|
|
|
|
.Dv EOF .
|
2005-07-17 04:11:06 +00:00
|
|
|
.Pp
|
2000-01-19 16:21:05 +00:00
|
|
|
In the ASCII character set, this includes the following characters
|
|
|
|
(with their numeric values shown in octal):
|
1994-05-27 05:00:24 +00:00
|
|
|
.Bl -column \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__
|
2012-04-07 09:05:30 +00:00
|
|
|
.It "\&041\ ``!''" Ta "042\ ``""''" Ta "043\ ``#''" Ta "044\ ``$''" Ta "045\ ``%''"
|
|
|
|
.It "\&046\ ``&''" Ta "047\ ``'''" Ta "050\ ``(''" Ta "051\ ``)''" Ta "052\ ``*''"
|
|
|
|
.It "\&053\ ``+''" Ta "054\ ``,''" Ta "055\ ``-''" Ta "056\ ``.''" Ta "057\ ``/''"
|
|
|
|
.It "\&060\ ``0''" Ta "061\ ``1''" Ta "062\ ``2''" Ta "063\ ``3''" Ta "064\ ``4''"
|
|
|
|
.It "\&065\ ``5''" Ta "066\ ``6''" Ta "067\ ``7''" Ta "070\ ``8''" Ta "071\ ``9''"
|
|
|
|
.It "\&072\ ``:''" Ta "073\ ``;''" Ta "074\ ``<''" Ta "075\ ``=''" Ta "076\ ``>''"
|
|
|
|
.It "\&077\ ``?''" Ta "100\ ``@''" Ta "101\ ``A''" Ta "102\ ``B''" Ta "103\ ``C''"
|
|
|
|
.It "\&104\ ``D''" Ta "105\ ``E''" Ta "106\ ``F''" Ta "107\ ``G''" Ta "110\ ``H''"
|
|
|
|
.It "\&111\ ``I''" Ta "112\ ``J''" Ta "113\ ``K''" Ta "114\ ``L''" Ta "115\ ``M''"
|
|
|
|
.It "\&116\ ``N''" Ta "117\ ``O''" Ta "120\ ``P''" Ta "121\ ``Q''" Ta "122\ ``R''"
|
|
|
|
.It "\&123\ ``S''" Ta "124\ ``T''" Ta "125\ ``U''" Ta "126\ ``V''" Ta "127\ ``W''"
|
|
|
|
.It "\&130\ ``X''" Ta "131\ ``Y''" Ta "132\ ``Z''" Ta "133\ ``[''" Ta "134\ ``\e\|''"
|
|
|
|
.It "\&135\ ``]''" Ta "136\ ``^''" Ta "137\ ``_''" Ta "140\ ```''" Ta "141\ ``a''"
|
|
|
|
.It "\&142\ ``b''" Ta "143\ ``c''" Ta "144\ ``d''" Ta "145\ ``e''" Ta "146\ ``f''"
|
|
|
|
.It "\&147\ ``g''" Ta "150\ ``h''" Ta "151\ ``i''" Ta "152\ ``j''" Ta "153\ ``k''"
|
|
|
|
.It "\&154\ ``l''" Ta "155\ ``m''" Ta "156\ ``n''" Ta "157\ ``o''" Ta "160\ ``p''"
|
|
|
|
.It "\&161\ ``q''" Ta "162\ ``r''" Ta "163\ ``s''" Ta "164\ ``t''" Ta "165\ ``u''"
|
|
|
|
.It "\&166\ ``v''" Ta "167\ ``w''" Ta "170\ ``x''" Ta "171\ ``y''" Ta "172\ ``z''"
|
|
|
|
.It "\&173\ ``{''" Ta "174\ ``|''" Ta "175\ ``}''" Ta "176\ ``~''" Ta \&
|
1994-05-27 05:00:24 +00:00
|
|
|
.El
|
2012-07-30 20:56:19 +00:00
|
|
|
.Pp
|
|
|
|
The
|
|
|
|
.Fn isgraph_l
|
|
|
|
function takes an explicit locale argument, whereas the
|
|
|
|
.Fn isgraph
|
|
|
|
function uses the current global or per-thread locale.
|
1994-05-27 05:00:24 +00:00
|
|
|
.Sh RETURN VALUES
|
|
|
|
The
|
|
|
|
.Fn isgraph
|
2012-07-30 20:56:19 +00:00
|
|
|
and
|
|
|
|
.Fn isgraph_l
|
|
|
|
functions return zero if the character tests false and
|
|
|
|
return non-zero if the character tests true.
|
2002-10-06 10:15:38 +00:00
|
|
|
.Sh COMPATIBILITY
|
2004-07-29 23:32:41 +00:00
|
|
|
The
|
2002-10-06 10:15:38 +00:00
|
|
|
.Bx 4.4
|
2004-07-29 23:32:41 +00:00
|
|
|
extension of accepting arguments outside of the range of the
|
|
|
|
.Vt "unsigned char"
|
2004-08-21 07:37:08 +00:00
|
|
|
type in locales with large character sets is considered obsolete
|
|
|
|
and may not be supported in future releases.
|
2004-07-29 23:32:41 +00:00
|
|
|
The
|
2002-10-06 10:15:38 +00:00
|
|
|
.Fn iswgraph
|
2004-08-21 07:37:08 +00:00
|
|
|
function should be used instead.
|
1994-05-27 05:00:24 +00:00
|
|
|
.Sh SEE ALSO
|
|
|
|
.Xr ctype 3 ,
|
2002-10-06 10:15:38 +00:00
|
|
|
.Xr iswgraph 3 ,
|
1994-05-27 05:00:24 +00:00
|
|
|
.Xr ascii 7
|
|
|
|
.Sh STANDARDS
|
|
|
|
The
|
|
|
|
.Fn isgraph
|
|
|
|
function conforms to
|
2001-02-26 13:23:47 +00:00
|
|
|
.St -isoC .
|
2012-07-30 20:56:19 +00:00
|
|
|
The
|
|
|
|
.Fn isgraph_l
|
|
|
|
function conforms to
|
|
|
|
.St -p1003.1-2008 .
|