MCPcopy Create free account
hub / github.com/c42f/tinyformat / printf

Function printf

tinyformat.h:1070–1073  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1068/// Format list of arguments to std::cout, according to the given format string
1069template<typename... Args>
1070void printf(const char* fmt, const Args&... args)
1071{
1072 format(std::cout, fmt, args...);
1073}
1074
1075template<typename... Args>
1076void printfln(const char* fmt, const Args&... args)

Callers 2

unitTestsFunction · 0.85
speedTestFunction · 0.85

Calls 1

formatFunction · 0.85

Tested by 2

unitTestsFunction · 0.68
speedTestFunction · 0.68