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

Function isSpace

src/fl/stl/istream.cpp.hpp:19–21  ·  view source on GitHub ↗

Helper function to check if a character is whitespace

Source from the content-addressed store, hash-verified

17
18 // Helper function to check if a character is whitespace
19 inline bool isSpace(char c) {
20 return c == ' ' || c == '\t' || c == '\n' || c == '\r' || c == '\f' || c == '\v';
21 }
22
23 // Custom integer parsing function for signed 32-bit integers
24 bool parse_i32(const char* str, fl::i32& result) {

Callers 2

parse_i32Function · 0.85
parse_u32Function · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected