Go to the first, previous, next, last section, table of contents.


isalpha

Syntax

#include <ctype.h>

int isalpha(int c);

Description

Tells if c is a letter.

Return Value

Nonzero if c is a letter, else zero.

Portability

ANSI, POSIX


Go to the first, previous, next, last section, table of contents.