Files
2024-02-19 00:21:39 -05:00

22 lines
323 B
Groff

NAME
toascii - convert to ASCII
SYNTAX
#include <ctype.h>
int toascii( c )
int c;
DESCRIPTION
Toascii(3) maps an int into a value from 0 to 127.
This is necessary for some functions, such as
isupper(3).
RESULTS
Lower seven bits of <c>.
SEE ALSO
ctype(3), tolower(3), toupper(3)