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

Function printf

src/tinyformat.h:984–987  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

982/// Format list of arguments to std::cout, according to the given format string
983template<typename... Args>
984void printf(const char* fmt, const Args&... args)
985{
986 format(std::cout, fmt, args...);
987}
988
989template<typename... Args>
990void printfln(const char* fmt, const Args&... args)

Callers 6

print_numberFunction · 0.85
run_benchmarkFunction · 0.85
mainFunction · 0.85
print_numberFunction · 0.85
run_benchmarkFunction · 0.85
outputEscapeFunction · 0.85

Calls 1

formatFunction · 0.85

Tested by 1

mainFunction · 0.68