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

Function strfmt

printf.c:823–832  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

821static char strfmt_buf[0x200];
822
823char *strfmt(const char *fmt, ...)
824{
825 va_list args;
826
827 va_start(args, fmt);
828 vsnprintf(strfmt_buf, sizeof(strfmt_buf), fmt, args);
829 va_end(args);
830
831 return strfmt_buf;
832}
833
834/*
835#define PRINTF_MAX 128

Callers 10

setup_formFunction · 0.85
exec_xmb_command2Function · 0.85
strnumFunction · 0.85
strconcatFunction · 0.85
prepare_htmlFunction · 0.85
www_listing.hFile · 0.85
show_rec_formatFunction · 0.85
secureid.hFile · 0.85
add_query_htmlFunction · 0.85
game_listingFunction · 0.85

Calls 1

vsnprintfFunction · 0.70

Tested by

no test coverage detected