MCPcopy Create free account
hub / github.com/AppleWin/AppleWin / Format

Method Format

source/Debugger/Debug.cpp:269–276  ·  view source on GitHub ↗

1 is "this" */

Source from the content-addressed store, hash-verified

267 }
268 ATTRIBUTE_FORMAT_PRINTF(2, 3) /* 1 is "this" */
269 void Format(const char* fmt, ...)
270 {
271 if (!buf || bufsz <= 0) return;
272 va_list va;
273 va_start(va, fmt);
274 Assign(StrFormatV(fmt, va));
275 va_end(va);
276 }
277 char* buf;
278 size_t bufsz;
279 };

Callers 1

ProfileFormatFunction · 0.80

Calls 1

StrFormatVFunction · 0.85

Tested by

no test coverage detected