MCPcopy Create free account
hub / github.com/IppClub/Dora-SSR / snprintf

Function snprintf

Source/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
prettifyFunction · 0.70
encode_pathFunction · 0.50
encode_path_componentFunction · 0.50
encode_query_componentFunction · 0.50
get_cert_sansFunction · 0.50
get_cert_serialFunction · 0.50
set_value_convertFunction · 0.50
glsl_typeMethod · 0.50

Calls 1

vsnprintfFunction · 0.70

Tested by

no test coverage detected