Character Classification Functions


isascii (Macro)


Syntax

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

Arguments

c      character code 

Return Value

An int value that is either nonzero (true) or zero (false) 

Description

Checks to see if the specified character is an ASCII code from 0x00 to 0x7f.