MCPcopy Create free account
hub / github.com/crownengine/crown / snprintf

Function snprintf

3rdparty/bx/src/string.cpp:1264–1272  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1262 }
1263
1264 int32_t snprintf(char* _out, int32_t _max, const char* _format, ...)
1265 {
1266 va_list argList;
1267 va_start(argList, _format);
1268 int32_t total = vsnprintf(_out, _max, _format, argList);
1269 va_end(argList);
1270
1271 return total;
1272 }
1273
1274 int32_t vprintf(const char* _format, va_list _argList)
1275 {

Callers 15

getExecutablePathFunction · 0.70
execFunction · 0.70
debugPrintfDataFunction · 0.70
DbgHelpSymbolResolveMethod · 0.70
writeCallstackFunction · 0.70
prettifyFunction · 0.70
glsl_typeMethod · 0.50
get_array_instanceMethod · 0.50
record_key_hashMethod · 0.50
prepare_arrayMethod · 0.50
print_floatFunction · 0.50

Calls 1

vsnprintfFunction · 0.70

Tested by

no test coverage detected