7.4.1.2 The isalpha functionļƒ

Synopsis

1

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

Description

2

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