absl::ascii_isupper

Determines whether the given character is uppercase.

Synopsis

Declared in <absl/strings/ascii.h>

constexpr
bool
ascii_isupper(unsigned char c);

Return Value

true if c is uppercase, false otherwise.

Parameters

NameDescription
cThe character to test.