Deleted Added
full compact
ispunct.3 (233992) ispunct.3 (238919)
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

--- 16 unchanged lines hidden (view full) ---

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.\" @(#)ispunct.3 8.1 (Berkeley) 6/4/93
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

--- 16 unchanged lines hidden (view full) ---

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.\" @(#)ispunct.3 8.1 (Berkeley) 6/4/93
33.\" $FreeBSD: head/lib/libc/locale/ispunct.3 233992 2012-04-07 09:05:30Z joel $
33.\" $FreeBSD: head/lib/libc/locale/ispunct.3 238919 2012-07-30 20:56:19Z issyl0 $
34.\"
34.\"
35.Dd July 17, 2005
35.Dd July 30, 2012
36.Dt ISPUNCT 3
37.Os
38.Sh NAME
39.Nm ispunct
40.Nd punctuation character test
41.Sh LIBRARY
42.Lb libc
43.Sh SYNOPSIS
44.In ctype.h
45.Ft int
46.Fn ispunct "int c"
36.Dt ISPUNCT 3
37.Os
38.Sh NAME
39.Nm ispunct
40.Nd punctuation character test
41.Sh LIBRARY
42.Lb libc
43.Sh SYNOPSIS
44.In ctype.h
45.Ft int
46.Fn ispunct "int c"
47.Ft int
48.Fn ispunct_l "int c" "locale_t loc"
47.Sh DESCRIPTION
48The
49.Fn ispunct
50function tests for any printing character except for space
51.Pq Ql "\ "
52or a
53character for which
54.Xr isalnum 3

--- 9 unchanged lines hidden (view full) ---

64.It "\&041\ ``!''" Ta "042\ ``""''" Ta "043\ ``#''" Ta "044\ ``$''" Ta "045\ ``%''"
65.It "\&046\ ``&''" Ta "047\ ``'''" Ta "050\ ``(''" Ta "051\ ``)''" Ta "052\ ``*''"
66.It "\&053\ ``+''" Ta "054\ ``,''" Ta "055\ ``-''" Ta "056\ ``.''" Ta "057\ ``/''"
67.It "\&072\ ``:''" Ta "073\ ``;''" Ta "074\ ``<''" Ta "075\ ``=''" Ta "076\ ``>''"
68.It "\&077\ ``?''" Ta "100\ ``@''" Ta "133\ ``[''" Ta "134\ ``\e\|''" Ta "135\ ``]''"
69.It "\&136\ ``^''" Ta "137\ ``_''" Ta "140\ ```''" Ta "173\ ``{''" Ta "174\ ``|''"
70.It "\&175\ ``}''" Ta "176\ ``~''" Ta \& Ta \& Ta \&
71.El
49.Sh DESCRIPTION
50The
51.Fn ispunct
52function tests for any printing character except for space
53.Pq Ql "\ "
54or a
55character for which
56.Xr isalnum 3

--- 9 unchanged lines hidden (view full) ---

66.It "\&041\ ``!''" Ta "042\ ``""''" Ta "043\ ``#''" Ta "044\ ``$''" Ta "045\ ``%''"
67.It "\&046\ ``&''" Ta "047\ ``'''" Ta "050\ ``(''" Ta "051\ ``)''" Ta "052\ ``*''"
68.It "\&053\ ``+''" Ta "054\ ``,''" Ta "055\ ``-''" Ta "056\ ``.''" Ta "057\ ``/''"
69.It "\&072\ ``:''" Ta "073\ ``;''" Ta "074\ ``<''" Ta "075\ ``=''" Ta "076\ ``>''"
70.It "\&077\ ``?''" Ta "100\ ``@''" Ta "133\ ``[''" Ta "134\ ``\e\|''" Ta "135\ ``]''"
71.It "\&136\ ``^''" Ta "137\ ``_''" Ta "140\ ```''" Ta "173\ ``{''" Ta "174\ ``|''"
72.It "\&175\ ``}''" Ta "176\ ``~''" Ta \& Ta \& Ta \&
73.El
74.Pp
75The
76.Fn ispunct_l
77function takes an explicit locale argument, whereas the
78.Fn ispunct
79function uses the current global or per-thread locale.
72.Sh RETURN VALUES
73The
74.Fn ispunct
80.Sh RETURN VALUES
81The
82.Fn ispunct
75function returns zero if the character tests false and
76returns non-zero if the character tests true.
83and
84.Fn ispunct_l
85functions return zero if the character tests false and
86return non-zero if the character tests true.
77.Sh COMPATIBILITY
78The
79.Bx 4.4
80extension of accepting arguments outside of the range of the
81.Vt "unsigned char"
82type in locales with large character sets is considered obsolete
83and may not be supported in future releases.
84The
85.Fn iswpunct
86function should be used instead.
87.Sh SEE ALSO
88.Xr ctype 3 ,
89.Xr iswpunct 3 ,
90.Xr ascii 7
91.Sh STANDARDS
92The
93.Fn ispunct
94function conforms to
95.St -isoC .
87.Sh COMPATIBILITY
88The
89.Bx 4.4
90extension of accepting arguments outside of the range of the
91.Vt "unsigned char"
92type in locales with large character sets is considered obsolete
93and may not be supported in future releases.
94The
95.Fn iswpunct
96function should be used instead.
97.Sh SEE ALSO
98.Xr ctype 3 ,
99.Xr iswpunct 3 ,
100.Xr ascii 7
101.Sh STANDARDS
102The
103.Fn ispunct
104function conforms to
105.St -isoC .
106The
107.Fn ispunct_l
108function conforms to
109.St -p1003.1-2008 .