toascii

Converts an integer value to the corresponding 7-bit ASCII character.

Library:LibC
Service:Characters and Strings

Syntax

  #include <ctype.h> 
   
  int toascii (
     int   c);
  

Parameters

c

(IN) Specifies any integer value.

Return Values

Returns the 7-bit ASCII character that corresponds to the integer specified with the c parameter.

See Also