toascii(3) redhat man page | unix.com

Man Page: toascii

Operating Environment: redhat

Section: 3

TOASCII(3)						     Linux Programmer's Manual							TOASCII(3)

NAME
toascii - convert character to ASCII
SYNOPSIS
#include <ctype.h> int toascii(int c);
DESCRIPTION
toascii() converts c to a 7-bit unsigned char value that fits into the ASCII character set, by clearing the high-order bits.
RETURN VALUE
The value returned is that of the converted character.
CONFORMING TO
SVID, BSD
BUGS
Many people will be unhappy if you use this function. This function will convert accented letters into random characters.
SEE ALSO
isascii(3), toupper(3), tolower(3)
GNU
1995-09-16 TOASCII(3)
Related Man Pages
toascii(3) - linux
toascii(3) - debian
toascii(3) - suse
toascii(3) - x11r4
toascii(3) - minix
Similar Topics in the Unix Linux Community
Convert HEX to EBCDIC IN C
What is ASCII character?
Split and add header and trailer from input file