toascii()                Convert 'c' to ASCII Character
 
 #include   <ctype.h>
 
 int        toascii(c);
 int        c;                           Character to be converted
 
    The toascii() macro converts the integer 'c' to a value in the ASCII
    character set (0 - 127) by clearing all but the lower seven bits.
    'c' is left unchanged if it already represents an ASCII character.
 
    Returns:    The converted character 'c'.  There is no error return.

Seealso:



This page last updated on Fri Nov 30 10:48:32 MSK 2001
Copyright © 1992-2001, Vitaly Filatov, Moscow, Russia
Webmaster