]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man3/toascii.3
Wrapped long lines, wrapped at sentence boundaries; stripped trailing
[thirdparty/man-pages.git] / man3 / toascii.3
CommitLineData
fea681da
MK
1.\" Hey Emacs! This file is -*- nroff -*- source.
2.\" (c) 1995 by Jim Van Zandt <jrv@vanzandt.mv.com>
3.\"
4.\" Permission is granted to make and distribute verbatim copies of this
5.\" manual provided the copyright notice and this permission notice are
6.\" preserved on all copies.
7.\"
8.\" Permission is granted to copy and distribute modified versions of this
9.\" manual under the conditions for verbatim copying, provided that the
10.\" entire resulting derived work is distributed under the terms of a
11.\" permission notice identical to this one.
c13182ef 12.\"
fea681da
MK
13.\" Since the Linux kernel and libraries are constantly changing, this
14.\" manual page may be incorrect or out-of-date. The author(s) assume no
15.\" responsibility for errors or omissions, or for damages resulting from
16.\" the use of the information contained herein. The author(s) may not
17.\" have taken the same level of care in the production of this manual,
18.\" which is licensed free of charge, as they might when working
19.\" professionally.
c13182ef 20.\"
fea681da
MK
21.\" Formatted or processed versions of this manual, if unaccompanied by
22.\" the source, must acknowledge the copyright and authors of this work.
23.\" License.
24.\"
25.\" Added BUGS section, aeb, 950919
26.\"
27.TH TOASCII 3 1995-09-16 "GNU" "Linux Programmer's Manual"
28.SH NAME
29toascii \- convert character to ASCII
30.SH SYNOPSIS
31.nf
32.B #include <ctype.h>
33.sp
34.BI "int toascii(int " "c" );
35.fi
36.SH DESCRIPTION
9ff08aad 37\fBtoascii\fP() converts \fIc\fP to a 7-bit \fIunsigned char\fP value
fea681da
MK
38that fits into the ASCII character set, by clearing the
39high-order bits.
40.SH "RETURN VALUE"
41The value returned is that of the converted character.
42.SH "CONFORMING TO"
68e1685c 43SVr4, BSD, POSIX.1-2001.
fea681da
MK
44.SH BUGS
45Many people will be unhappy if you use this function.
46This function will convert accented letters into random characters.
47.SH "SEE ALSO"
48.BR isascii (3),
49.BR tolower (3),
50.BR toupper (3)