MCPcopy Index your code
hub / github.com/AppleWin/AppleWin / StrFormat

Function StrFormat

source/StrFormat.cpp:7–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5#include <cassert>
6
7std::string StrFormat(const char* format, ...)
8{
9 va_list va;
10 va_start(va, format);
11 std::string s = StrFormatV(format, va);
12 va_end(va);
13 return s;
14}
15
16std::string StrFormatV(const char* format, va_list va)
17{

Callers 15

Video_TakeScreenShotMethod · 0.85
SetAppleWinVersionFunction · 0.85
WriteMethod · 0.85
SetMemModeFunction · 0.85
MemInitializeROMFunction · 0.85
DecodeLatchNibbleMethod · 0.85
New_Blank_DiskFunction · 0.85
Format_ProDOS_DiskFunction · 0.85
Format_DOS33_DiskFunction · 0.85

Calls 1

StrFormatVFunction · 0.85

Tested by

no test coverage detected