OSDN Git Service

LDP: Update original to LDP v3.68
[linuxjm/LDP_man-pages.git] / original / 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 2013-12-23 "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 .sp
34 .BI "int toascii(int " "c" );
35 .fi
36 .sp
37 .in -4n
38 Feature Test Macro Requirements for glibc (see
39 .BR feature_test_macros (7)):
40 .in
41 .sp
42 .BR toascii ():
43 _BSD_SOURCE || _SVID_SOURCE || _XOPEN_SOURCE
44 .SH DESCRIPTION
45 .BR toascii ()
46 converts
47 .I c
48 to a 7-bit
49 .I "unsigned char"
50 value that fits into the ASCII character set, by clearing the
51 high-order bits.
52 .SH RETURN VALUE
53 The value returned is that of the converted character.
54 .SH ATTRIBUTES
55 .SS Multithreading (see pthreads(7))
56 The
57 .BR toascii ()
58 function is thread-safe.
59 .SH CONFORMING TO
60 SVr4, BSD, POSIX.1-2001.
61 POSIX.1-2008 marks
62 .BR toascii ()
63 as obsolete,
64 noting that it cannot be used portably in a localized application.
65 .SH BUGS
66 Many people will be unhappy if you use this function.
67 This function will convert accented letters into random characters.
68 .SH SEE ALSO
69 .BR isascii (3),
70 .BR tolower (3),
71 .BR toupper (3)
72 .SH COLOPHON
73 This page is part of release 3.68 of the Linux
74 .I man-pages
75 project.
76 A description of the project,
77 information about reporting bugs,
78 and the latest version of this page,
79 can be found at
80 \%http://www.kernel.org/doc/man\-pages/.