TOASCII(3) Library Functions Manual TOASCII(3)
NAME
toascii —
translate integer to a 7-bit ASCII character
SYNOPSIS
#include <ctype.h> int toascii(int c);
DESCRIPTION
The toascii() function converts its argument into a 7-bit ASCII character.
RETURN VALUE
The toascii() function returns the value ( c & 0x7f).
ERRORS
No errors are returned.
EXAMPLES
None.
APPLICATION USAGE
None.
FUTURE DIRECTIONS
None.
SEE ALSO
isascii(3) , <ctype.h> .
DERIVATION
Derived from Issue 1 of the SVID.
February 1997 posix.fail