totn C Functions

C Language: Standard Library Functions - ctype.h

In the C Programming Language, the Standard Library Functions are divided into several header files.

The following is a list of functions found within the <ctype.h> header file:

Character Testing functions

isalnumTest for Alphanumeric
isalphaTest for Alphabetic
iscntrlTest for Control Character
isdigitTest for Digit
isgraphTest for Graphical Character (does not include a space)
islowerTest for Lowercase Letter
isprintTest for Printing Character (does include a space)
ispunctTest for Punctuation Character
isspaceTest for White-Space Character
isupperTest for Uppercase Letter
isxdigitTest for Hexadecimal Digit

Character Case-Mapping functions

tolowerConvert to Lowercase
toupperConvert to Uppercase