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

Function sprintf

src/fl/stl/stdio.h:712–715  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

710/// @endcode
711template<fl::size N, typename... Args>
712int sprintf(char (&buffer)[N], const char* format, const Args&... args) FL_NOEXCEPT {
713 // Use the compile-time known buffer size for safety
714 return snprintf(buffer, N, format, args...);
715}
716
717} // namespace fl

Callers 2

dumpMethod · 0.85
FL_TEST_FILEFunction · 0.85

Calls 1

snprintfFunction · 0.85

Tested by

no test coverage detected