MCPcopy Create free account
hub / github.com/GJDuck/e9patch / snprintf

Function snprintf

examples/stdlib.c:4132–4139  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4130}
4131
4132static int snprintf(char *str, size_t len, const char *format, ...)
4133{
4134 va_list ap;
4135 va_start(ap, format);
4136 int result = vsnprintf(str, len, format, ap);
4137 va_end(ap);
4138 return result;
4139}
4140
4141static int asprintf(char **strp, const char *format, ...)
4142{

Callers 6

realMainFunction · 0.85
bitstring<Key128>Function · 0.85
emitPatchFunction · 0.85
main_2Function · 0.85
getAbsnameFunction · 0.85
ttyname_rFunction · 0.85

Calls 1

vsnprintfFunction · 0.70

Tested by

no test coverage detected