]>
Commit | Line | Data |
---|---|---|
5b2abdfb A |
1 | .\" Copyright (c) 1991, 1993 |
2 | .\" The Regents of the University of California. All rights reserved. | |
3 | .\" | |
4 | .\" This code is derived from software contributed to Berkeley by | |
5 | .\" the American National Standards Committee X3, on Information | |
6 | .\" Processing Systems. | |
7 | .\" | |
8 | .\" Redistribution and use in source and binary forms, with or without | |
9 | .\" modification, are permitted provided that the following conditions | |
10 | .\" are met: | |
11 | .\" 1. Redistributions of source code must retain the above copyright | |
12 | .\" notice, this list of conditions and the following disclaimer. | |
13 | .\" 2. Redistributions in binary form must reproduce the above copyright | |
14 | .\" notice, this list of conditions and the following disclaimer in the | |
15 | .\" documentation and/or other materials provided with the distribution. | |
5b2abdfb A |
16 | .\" 4. Neither the name of the University nor the names of its contributors |
17 | .\" may be used to endorse or promote products derived from this software | |
18 | .\" without specific prior written permission. | |
19 | .\" | |
20 | .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | |
21 | .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
22 | .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
23 | .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | |
24 | .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | |
25 | .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | |
26 | .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
27 | .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | |
28 | .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | |
29 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | |
30 | .\" SUCH DAMAGE. | |
31 | .\" | |
32 | .\" @(#)isgraph.3 8.2 (Berkeley) 12/11/93 | |
1f2f436a | 33 | .\" $FreeBSD: src/lib/libc/locale/isgraph.3,v 1.25 2009/11/13 09:03:50 roam Exp $ |
5b2abdfb | 34 | .\" |
1f2f436a | 35 | .Dd July 17, 2005 |
5b2abdfb A |
36 | .Dt ISGRAPH 3 |
37 | .Os | |
38 | .Sh NAME | |
39 | .Nm isgraph | |
40 | .Nd printing character test (space character exclusive) | |
41 | .Sh LIBRARY | |
42 | .Lb libc | |
43 | .Sh SYNOPSIS | |
44 | .In ctype.h | |
45 | .Ft int | |
46 | .Fn isgraph "int c" | |
47 | .Sh DESCRIPTION | |
48 | The | |
49 | .Fn isgraph | |
9385eb3d A |
50 | function tests for any printing character except space |
51 | .Pq Ql "\ " | |
52 | and other | |
1f2f436a A |
53 | locale-specific space-like characters. |
54 | The value of the argument must be representable as an | |
55 | .Vt "unsigned char" | |
5b2abdfb A |
56 | or the value of |
57 | .Dv EOF . | |
1f2f436a | 58 | .Pp |
5b2abdfb A |
59 | In the ASCII character set, this includes the following characters |
60 | (with their numeric values shown in octal): | |
61 | .Pp | |
62 | .Bl -column \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__ | |
63 | .It "\&041\ ``!'' \t042\ ``""'' \t043\ ``#'' \t044\ ``$'' \t045\ ``%''" | |
64 | .It "\&046\ ``&'' \t047\ ``''' \t050\ ``('' \t051\ ``)'' \t052\ ``*''" | |
65 | .It "\&053\ ``+'' \t054\ ``,'' \t055\ ``-'' \t056\ ``.'' \t057\ ``/''" | |
66 | .It "\&060\ ``0'' \t061\ ``1'' \t062\ ``2'' \t063\ ``3'' \t064\ ``4''" | |
67 | .It "\&065\ ``5'' \t066\ ``6'' \t067\ ``7'' \t070\ ``8'' \t071\ ``9''" | |
68 | .It "\&072\ ``:'' \t073\ ``;'' \t074\ ``<'' \t075\ ``='' \t076\ ``>''" | |
69 | .It "\&077\ ``?'' \t100\ ``@'' \t101\ ``A'' \t102\ ``B'' \t103\ ``C''" | |
70 | .It "\&104\ ``D'' \t105\ ``E'' \t106\ ``F'' \t107\ ``G'' \t110\ ``H''" | |
71 | .It "\&111\ ``I'' \t112\ ``J'' \t113\ ``K'' \t114\ ``L'' \t115\ ``M''" | |
72 | .It "\&116\ ``N'' \t117\ ``O'' \t120\ ``P'' \t121\ ``Q'' \t122\ ``R''" | |
73 | .It "\&123\ ``S'' \t124\ ``T'' \t125\ ``U'' \t126\ ``V'' \t127\ ``W''" | |
74 | .It "\&130\ ``X'' \t131\ ``Y'' \t132\ ``Z'' \t133\ ``['' \t134\ ``\e\|''" | |
75 | .It "\&135\ ``]'' \t136\ ``^'' \t137\ ``_'' \t140\ ```'' \t141\ ``a''" | |
76 | .It "\&142\ ``b'' \t143\ ``c'' \t144\ ``d'' \t145\ ``e'' \t146\ ``f''" | |
77 | .It "\&147\ ``g'' \t150\ ``h'' \t151\ ``i'' \t152\ ``j'' \t153\ ``k''" | |
78 | .It "\&154\ ``l'' \t155\ ``m'' \t156\ ``n'' \t157\ ``o'' \t160\ ``p''" | |
79 | .It "\&161\ ``q'' \t162\ ``r'' \t163\ ``s'' \t164\ ``t'' \t165\ ``u''" | |
80 | .It "\&166\ ``v'' \t167\ ``w'' \t170\ ``x'' \t171\ ``y'' \t172\ ``z''" | |
81 | .It "\&173\ ``{'' \t174\ ``|'' \t175\ ``}'' \t176\ ``~''" | |
82 | .El | |
83 | .Sh RETURN VALUES | |
84 | The | |
85 | .Fn isgraph | |
86 | function returns zero if the character tests false and | |
87 | returns non-zero if the character tests true. | |
9385eb3d | 88 | .Sh COMPATIBILITY |
3d9156a7 | 89 | The |
9385eb3d | 90 | .Bx 4.4 |
3d9156a7 A |
91 | extension of accepting arguments outside of the range of the |
92 | .Vt "unsigned char" | |
93 | type in locales with large character sets is considered obsolete | |
94 | and may not be supported in future releases. | |
95 | The | |
9385eb3d | 96 | .Fn iswgraph |
3d9156a7 | 97 | function should be used instead. |
5b2abdfb A |
98 | .Sh SEE ALSO |
99 | .Xr ctype 3 , | |
9385eb3d | 100 | .Xr iswgraph 3 , |
5b2abdfb A |
101 | .Xr ascii 7 |
102 | .Sh STANDARDS | |
103 | The | |
104 | .Fn isgraph | |
105 | function conforms to | |
106 | .St -isoC . |