absl::ascii_isgraph

Determines whether the given character has a graphical representation.

Synopsis

Declared in <absl/strings/ascii.h>

constexpr
bool
ascii_isgraph(unsigned char c);

Return Value

true if c has a graphical representation, false otherwise.

Parameters

NameDescription
cThe character to test.