MCPcopy Create free account
hub / github.com/FEX-Emu/FEX / snprintf

Function snprintf

Source/Windows/Common/CRT/String.cpp:119–125  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

117}
118
119int snprintf(char* stream, size_t n, const char* format, ...) {
120 __builtin_va_list args;
121 __builtin_va_start(args, format);
122 int ret = vsnprintf(stream, n, format, args);
123 __builtin_va_end(args);
124 return ret;
125}
126
127char* setlocale(int _Category, const char* _Locale) {
128 return Locale;

Callers 8

ExecveHandlerFunction · 0.85
IsSelfNoFollowMethod · 0.85
GetSelfMethod · 0.85
ReadlinkMethod · 0.85
ReadlinkatMethod · 0.85
EmulatedFDManagerMethod · 0.85
RegisterInfoFunction · 0.85
RegisterInfoFunction · 0.85

Calls 1

vsnprintfFunction · 0.85

Tested by

no test coverage detected