absl::ascii_isalpha

Determines whether the given character is an alphabetic character.

Synopsis

Declared in <absl/strings/ascii.h>

bool
ascii_isalpha(unsigned char c);

Return Value

true if c is alphabetic, false otherwise.

Parameters

NameDescription
cThe character to test.