MCPcopy Index your code
hub / github.com/cgsecurity/testdisk / snprintf

Function snprintf

src/common.c:106–114  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

104
105#ifndef HAVE_SNPRINTF
106int snprintf(char *str, size_t size, const char *format, ...)
107{
108 int res;
109 va_list ap;
110 va_start(ap,format);
111 res=vsnprintf(str, size, format, ap);
112 va_end(ap);
113 return res;
114}
115#endif
116
117#ifndef HAVE_VSNPRINTF

Callers 15

set_LVM_infoFunction · 0.85
set_LVM2_infoFunction · 0.85
aff_part_auxFunction · 0.85
photorecFunction · 0.85
hd_parseFunction · 0.85
read_device_sysfs_fileFunction · 0.85
disk_get_modelFunction · 0.85
file_descriptionFunction · 0.85
file_description_shortFunction · 0.85
set_JFS_infoFunction · 0.85
set_EXT2_infoFunction · 0.85
set_NTFS_infoFunction · 0.85

Calls 1

vsnprintfFunction · 0.85

Tested by

no test coverage detected