MCPcopy Create free account
hub / github.com/ariccio/altWinDirStat / stringformat

Function stringformat

Reference code/osImageTool/stringutils.cpp:158–167  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

156}
157
158string stringformat(char *fmt, ...)
159{
160 char buf[1024];
161 va_list ap;
162 va_start(ap, fmt);
163 _vsnprintf(buf, 1024, fmt, ap);
164 va_end(ap);
165
166 return string(buf);
167}
168
169string tolower(const string& str)
170{

Callers 15

GetFriendlyNameMethod · 0.85
OpenMethod · 0.85
ReadDataMethod · 0.85
OpenMethod · 0.85
ClearFileMethod · 0.85
DeleteFileMethod · 0.85
copyMethod · 0.85
GetFileReaderMethod · 0.85
OpenMethod · 0.85
WriteDataMethod · 0.85
OpenMethod · 0.85
CloseMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected