Crossware

Table of Contents        Previous topic       Next topic       

C COMPILER LIBRARY FUNCTIONS->Detailed Descriptions->toascii()

Summary

#include <ctype.h>
    
int toascii(int c);convert character to Ascii

Parameter

c    character to be converted


Description

This function sets all but the low order 7 bits of c to zero so that the converted character represents a character in the ASCII character set.


Return Value

The function returns the converted character.