MCPcopy Index your code
hub / github.com/Meituan-Dianping/SQLAdvisor / my_snprintf

Function my_snprintf

strings/my_vsnprintf.c:674–682  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

672
673
674size_t my_snprintf(char* to, size_t n, const char* fmt, ...)
675{
676 size_t result;
677 va_list args;
678 va_start(args,fmt);
679 result= my_vsnprintf(to, n, fmt, args);
680 va_end(args);
681 return result;
682}
683

Callers 15

apply_shiftFunction · 0.85
check_rulesFunction · 0.85
client.cFile · 0.85
mysql_detach_stmt_listFunction · 0.85
val_strMethod · 0.85
log.ccFile · 0.85
writeMethod · 0.85
err_convFunction · 0.85

Calls 1

my_vsnprintfFunction · 0.85

Tested by

no test coverage detected