MCPcopy Create free account
hub / github.com/OGSR/OGSR-Engine / w_printf

Method w_printf

ogsr_engine/xrCore/FS.cpp:176–183  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

174 w_float(mag);
175}
176void IWriter::w_printf(const char* format, ...)
177{
178 va_list mark;
179 char buf[1024];
180 va_start(mark, format);
181 vsprintf(buf, format, mark);
182 w(buf, xr_strlen(buf));
183}
184
185//---------------------------------------------------
186// base stream

Callers 5

FastMsgFunction · 0.80
SaveMethod · 0.80
saveMethod · 0.80
SaveMethod · 0.80
SaveFunction · 0.80

Calls 1

xr_strlenFunction · 0.70

Tested by

no test coverage detected