FastLED 3.9.15
Loading...
Searching...
No Matches

◆ isspace()

bool fl::isspace ( char c)
inline

Check if character is whitespace (space, tab, newline, carriage return)

Parameters
cThe character to check
Returns
true if c is a whitespace character, false otherwise

Definition at line 18 of file cctype.h.

18 {
19 return c == ' ' || c == '\t' || c == '\n' || c == '\r';
20}

References FL_NOEXCEPT.

Referenced by createSerialRequestSource(), fl::anonymous_namespace{http_parser.cpp.hpp}::http_parser_trim(), and fl::string::trim().

+ Here is the caller graph for this function: