]> git.ipfire.org Git - thirdparty/man-pages.git/blob - man3/toascii.3
stdarg.3: SEE ALSO: add vprintf(3), vscanf(3), vsyslog(3)
[thirdparty/man-pages.git] / man3 / toascii.3
1 .\" Copyright (c) 1995 by Jim Van Zandt <jrv@vanzandt.mv.com>
2 .\"
3 .\" %%%LICENSE_START(VERBATIM)
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.
12 .\"
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.
20 .\"
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_END
24 .\"
25 .\" Added BUGS section, aeb, 950919
26 .\"
27 .TH TOASCII 3 2016-03-15 "GNU" "Linux Programmer's Manual"
28 .SH NAME
29 toascii \- convert character to ASCII
30 .SH SYNOPSIS
31 .nf
32 .B #include <ctype.h>
33 .PP
34 .BI "int toascii(int " "c" );
35 .fi
36 .PP
37 .in -4n
38 Feature Test Macro Requirements for glibc (see
39 .BR feature_test_macros (7)):
40 .in
41 .PP
42 .BR toascii ():
43 _XOPEN_SOURCE
44 || /* Glibc since 2.19: */ _DEFAULT_SOURCE
45 || /* Glibc versions <= 2.19: */ _SVID_SOURCE || _BSD_SOURCE
46 .SH DESCRIPTION
47 .BR toascii ()
48 converts
49 .I c
50 to a 7-bit
51 .I "unsigned char"
52 value that fits into the ASCII character set, by clearing the
53 high-order bits.
54 .SH RETURN VALUE
55 The value returned is that of the converted character.
56 .SH ATTRIBUTES
57 For an explanation of the terms used in this section, see
58 .BR attributes (7).
59 .TS
60 allbox;
61 lb lb lb
62 l l l.
63 Interface Attribute Value
64 T{
65 .BR toascii ()
66 T} Thread safety MT-Safe
67 .TE
68 .SH CONFORMING TO
69 SVr4, BSD, POSIX.1-2001.
70 POSIX.1-2008 marks
71 .BR toascii ()
72 as obsolete,
73 noting that it cannot be used portably in a localized application.
74 .SH BUGS
75 Many people will be unhappy if you use this function.
76 This function will convert accented letters into random characters.
77 .SH SEE ALSO
78 .BR isascii (3),
79 .BR tolower (3),
80 .BR toupper (3)