MCPcopy Create free account
hub / github.com/devosoft/avida / Stringf

Method Stringf

avida-core/source/tools/cStringUtil.cc:36–45  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

34
35
36cString cStringUtil::Stringf(const char * fmt, ...) {
37 va_list argp;
38 char buf[MAX_STRING_LENGTH];
39
40 va_start(argp, fmt);
41 vsprintf(buf, fmt, argp);
42 va_end(argp);
43
44 return cString(buf);
45}
46
47
48cString cStringUtil::ToRomanNumeral(const int in_value) {

Callers

nothing calls this directly

Calls 1

cStringClass · 0.70

Tested by

no test coverage detected