MCPcopy Create free account
hub / github.com/aldostools/webMAN-MOD / sprintf

Function sprintf

printf.c:801–809  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

799}
800
801int sprintf(char *buffer, const char *fmt, ...)
802{//__attribute__ ((format (printf, 2, 3)))
803 va_list args;
804
805 va_start(args, fmt);
806 int i = vsprintf(buffer, fmt,args);
807 va_end(args);
808 return i;
809}
810
811int snprintf(char *buffer, size_t len, const char *fmt, ...)
812{

Callers 15

wwwd_threadFunction · 0.70
restore_bakFunction · 0.50
cobra_set_psp_umdFunction · 0.50
get_cobra_versionFunction · 0.50
get_sys_infoFunction · 0.50
get_cpursxFunction · 0.50
add_game_infoFunction · 0.50
cpu_rsx_statsFunction · 0.50
show_wm_versionFunction · 0.50
add_list_entryFunction · 0.50
file_manager.hFile · 0.50
add_breadcrumb_trailFunction · 0.50

Calls 1

vsprintfFunction · 0.70

Tested by

no test coverage detected