MCPcopy Create free account
hub / github.com/ashaduri/gsmartcontrol / string_sprintf_get_buffer_size

Function string_sprintf_get_buffer_size

src/hz/string_sprintf.h:112–119  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

110
111
112inline int string_sprintf_get_buffer_size(const char* format, ...)
113{
114 std::va_list ap;
115 va_start(ap, format);
116 int ret = string_vsprintf_get_buffer_size(format, ap);
117 va_end(ap);
118 return ret;
119}
120
121
122

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected