MCPcopy Create free account
hub / github.com/SmingHub/Sming / snprintf

Function snprintf

Sming/System/include/m_printf.h:66–69  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

64extern "C++" {
65
66template <typename... Args> int snprintf(char* buf, size_t length, const char* fmt, Args... args)
67{
68 return m_snprintf(buf, length, fmt, args...);
69}
70
71template <typename... Args> int printf(const char* fmt, Args... args)
72{

Callers

nothing calls this directly

Calls 1

m_snprintfFunction · 0.85

Tested by

no test coverage detected