MCPcopy Create free account
hub / github.com/FastLED/FastLED / isspace

Function isspace

src/fl/stl/cctype.h:18–20  ·  view source on GitHub ↗

@brief Check if character is whitespace (space, tab, newline, carriage return) @param c The character to check @return true if c is a whitespace character, false otherwise

Source from the content-addressed store, hash-verified

16/// @param c The character to check
17/// @return true if c is a whitespace character, false otherwise
18inline bool isspace(char c) FL_NOEXCEPT {
19 return c == ' ' || c == '\t' || c == '\n' || c == '\r';
20}
21
22/// @brief Check if character is a decimal digit (0-9)
23/// @param c The character to check

Callers 7

trimMethod · 0.85
trimFunction · 0.85
http_parser_trimFunction · 0.85
ble_esp32.cpp.hppFile · 0.85
FL_TEST_FILEFunction · 0.85
FL_TEST_FILEFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected