MCPcopy Create free account
hub / github.com/NeuralNetworkVerification/Marabou / Stringf

Method Stringf

src/common/MStringf.h:31–43  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

29 };
30
31 Stringf( const char *format, ... )
32 {
33 va_list argList;
34 va_start( argList, format );
35
36 char buffer[MAX_STRING_LENGTH];
37
38 vsnprintf( buffer, MAX_STRING_LENGTH, format, argList );
39
40 va_end( argList );
41
42 _super = Super( buffer );
43 }
44};
45
46#ifdef CXXTEST_RUNNING

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected