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

Function isdigit

src/fl/stl/cctype.h:25–27  ·  view source on GitHub ↗

@brief Check if character is a decimal digit (0-9) @param c The character to check @return true if c is a digit, false otherwise

Source from the content-addressed store, hash-verified

23/// @param c The character to check
24/// @return true if c is a digit, false otherwise
25inline bool isdigit(char c) FL_NOEXCEPT {
26 return c >= '0' && c <= '9';
27}
28
29/// @brief Convert character to lowercase
30/// @param c The character to convert

Callers 5

parseIntFunction · 0.85
operator()Method · 0.85
operator()Method · 0.85
operator()Method · 0.85
operator()Method · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected