MCPcopy Create free account
hub / github.com/coreboot/coreboot / snprintf

Function snprintf

src/console/vsprintf.c:35–45  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

33}
34
35int snprintf(char *buf, size_t size, const char *fmt, ...)
36{
37 va_list args;
38 int i;
39
40 va_start(args, fmt);
41 i = vsnprintf(buf, size, fmt, args);
42 va_end(args);
43
44 return i;
45}

Callers 15

smbios_processor_nameFunction · 0.50
smbios_write_type4Function · 0.50
smbios_write_type4Function · 0.50
smbios_fill_dimm_locatorFunction · 0.50
smbios_fill_dimm_locatorFunction · 0.50
mainboard_initFunction · 0.50
qemu_aarch64_scan_busFunction · 0.50
smbios_system_skuFunction · 0.50

Calls 1

vsnprintfFunction · 0.70

Tested by 5

__bdk_dram_report_errorFunction · 0.40
__bdk_dram_report_error2Function · 0.40
setup_ulzman_fileFunction · 0.40