ISCNTRL - check for control character.

(ANSI Standard)

Usage:

#include <ctype.h>
i = iscntrl(c);

Where:

int c;
is the character you want to check.
int i;
is 1 if "c" is a control character, and 0 otherwise.

Description:

"iscntrl" determines whether a character is a control character.

Copyright © 1996, Thinkage Ltd.