[Linux manuál]
Návod, kniha: Linux Programmer's Manual
toascii: převést znak na ASCII
Originální popis anglicky: toascii - convert character to ASCIINávod, kniha: Linux Programmer's Manual
STRUČNĚ
#include <ctype.h>int toascii(int c);
POPIS / INSTRUKCE
toascii() converts c to a 7-bit unsigned char value that fits into the ASCII character set, by clearing the high-order bits.NÁVRATOVÁ HODNOTA
The value returned is that of the converted character.ODPOVÍDAJÍCÍ
SVID, BSDBUGS
Many people will be unhappy if you use this function. This function will convert accented letters into random characters.SOUVISEJÍCÍ
isascii(3), tolower(3), toupper(3)| 1995-09-16 | GNU |