IS_ALPHA

Table of Contents

IS_ALPHA

Description

Checks if the given character c is an ASCII alphabet.

Parameters

NameDirectionDescription
cinThe character to check.

Success

Returns true for a-z/A-Z, false otherwise.

Failure

Function cannot fail - always returns boolean result.

Usage example (Cross-references)

No external code usages found in the scanned files.

Share :

Related Posts

IN_RANGE

IN_RANGE Description Checks if the value x is within the inclusive range [lo, hi].

Read More

IS_PRINTABLE

IS_PRINTABLE Description Checks whether a given character ‘c’ is printable ascii or not.

Read More

IS_CAPS_ALPHA

IS_CAPS_ALPHA Description Checks if the given character c is an uppercase ASCII alphabet.

Read More