xref: /dflybsd-src/lib/libc/locale/isascii.3 (revision c66c7e2fb8d0d28477d550f1d2a50c4677d547ff)
10d5acd74SJohn Marino.\" Copyright (c) 1989, 1991, 1993
20d5acd74SJohn Marino.\"	The Regents of the University of California.  All rights reserved.
30d5acd74SJohn Marino.\"
40d5acd74SJohn Marino.\" Redistribution and use in source and binary forms, with or without
50d5acd74SJohn Marino.\" modification, are permitted provided that the following conditions
60d5acd74SJohn Marino.\" are met:
70d5acd74SJohn Marino.\" 1. Redistributions of source code must retain the above copyright
80d5acd74SJohn Marino.\"    notice, this list of conditions and the following disclaimer.
90d5acd74SJohn Marino.\" 2. Redistributions in binary form must reproduce the above copyright
100d5acd74SJohn Marino.\"    notice, this list of conditions and the following disclaimer in the
110d5acd74SJohn Marino.\"    documentation and/or other materials provided with the distribution.
12*c66c7e2fSzrj.\" 3. Neither the name of the University nor the names of its contributors
130d5acd74SJohn Marino.\"    may be used to endorse or promote products derived from this software
140d5acd74SJohn Marino.\"    without specific prior written permission.
150d5acd74SJohn Marino.\"
160d5acd74SJohn Marino.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
170d5acd74SJohn Marino.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
180d5acd74SJohn Marino.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
190d5acd74SJohn Marino.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
200d5acd74SJohn Marino.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
210d5acd74SJohn Marino.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
220d5acd74SJohn Marino.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
230d5acd74SJohn Marino.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
240d5acd74SJohn Marino.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
250d5acd74SJohn Marino.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
260d5acd74SJohn Marino.\" SUCH DAMAGE.
270d5acd74SJohn Marino.\"
280d5acd74SJohn Marino.\"     @(#)isascii.3	8.2 (Berkeley) 12/11/93
290d5acd74SJohn Marino.\" $FreeBSD: head/lib/libc/locale/isascii.3 196820 2009-09-04 07:44:58Z des $
300d5acd74SJohn Marino.\"
310d5acd74SJohn Marino.Dd October 6, 2002
320d5acd74SJohn Marino.Dt ISASCII 3
330d5acd74SJohn Marino.Os
340d5acd74SJohn Marino.Sh NAME
350d5acd74SJohn Marino.Nm isascii
360d5acd74SJohn Marino.Nd test for ASCII character
370d5acd74SJohn Marino.Sh LIBRARY
380d5acd74SJohn Marino.Lb libc
390d5acd74SJohn Marino.Sh SYNOPSIS
400d5acd74SJohn Marino.In ctype.h
410d5acd74SJohn Marino.Ft int
420d5acd74SJohn Marino.Fn isascii "int c"
430d5acd74SJohn Marino.Sh DESCRIPTION
440d5acd74SJohn MarinoThe
450d5acd74SJohn Marino.Fn isascii
460d5acd74SJohn Marinofunction tests for an
470d5acd74SJohn Marino.Tn ASCII
480d5acd74SJohn Marinocharacter, which is any character
490d5acd74SJohn Marinobetween 0 and octal 0177 inclusive.
500d5acd74SJohn Marino.Sh SEE ALSO
510d5acd74SJohn Marino.Xr ctype 3 ,
520d5acd74SJohn Marino.Xr iswascii 3 ,
530d5acd74SJohn Marino.Xr ascii 7
54