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

Function atoi

src/fl/stl/cstdlib.cpp.hpp:230–232  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

228}
229
230int atoi(const char* str) {
231 return static_cast<int>(strtol(str, nullptr, 10));
232}
233
234long atol(const char* str) {
235 return strtol(str, nullptr, 10);

Callers 1

read_requestMethod · 0.85

Calls 1

strtolFunction · 0.85

Tested by

no test coverage detected