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

Function printf

src/fl/stl/stdio.h:635–639  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

633/// @endcode
634template<typename... Args>
635void printf(const char* format, const Args&... args) FL_NOEXCEPT {
636 sstream stream;
637 printf_detail::format_impl(stream, format, args...);
638 fl::print(stream.str().c_str());
639}
640
641/// @brief Snprintf-like formatting function that writes to a buffer
642/// @param buffer Output buffer to write formatted string to

Callers 15

testRunStartMethod · 0.85
testRunEndMethod · 0.85
testCaseStartMethod · 0.85
testCaseEndMethod · 0.85
subcaseStartMethod · 0.85
assertResultMethod · 0.85
listTestsMethod · 0.85
checkTimeoutMethod · 0.85
outputMessageFunction · 0.85
outputCaptureFunction · 0.85
failFunction · 0.85
skipTestFunction · 0.85

Calls 4

format_implFunction · 0.70
printFunction · 0.70
c_strMethod · 0.45
strMethod · 0.45

Tested by 15

testRunStartMethod · 0.68
testRunEndMethod · 0.68
testCaseStartMethod · 0.68
testCaseEndMethod · 0.68
subcaseStartMethod · 0.68
assertResultMethod · 0.68
listTestsMethod · 0.68
checkTimeoutMethod · 0.68
outputMessageFunction · 0.68
outputCaptureFunction · 0.68
failFunction · 0.68
skipTestFunction · 0.68