7.4.1.2 The isalpha functionļ
Synopsis
#include <ctype.h>
int isalpha(int c);
Description
The isalpha function tests for any character for which isupper or islower is true, or any character that is one of a locale-specific set of alphabetic characters for which none of iscntrl, isdigit, ispunct, or isspace is true.[1] In the āCā locale, isalpha returns true only for the characters for which isupper or islower is true.
Footnotes