Full prototype:
int iscntrl(int);  
Purpose and Notes:
Used to test if the character passed in is a locale-specific control character.
Returns:
int- C-style true or false where it returns true if the character passed in is a locale-specific control character and false otherwise.
Argument 1:
int- A character to be tested on whether it is a member of the locale-specific list of control characters.