absl::ascii_isblank

Determines whether the given character is a blank character (tab or space).

Synopsis

Declared in <absl/strings/ascii.h>

bool
ascii_isblank(unsigned char c);

Return Value

true if c is a blank character, false otherwise.

Parameters

NameDescription
cThe character to test.