MCPcopy Create free account
hub / github.com/dds-bridge/dds / GetSystem

Function GetSystem

library/tests/testcommon.cpp:193–209  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

191//////////////////////////////////////////////////////////////////////
192
193string GetSystem()
194{
195 unsigned sys;
196#if defined(_WIN32)
197 sys = 1;
198#elif defined(__CYGWIN__)
199 sys = 2;
200#elif defined(__linux)
201 sys = 3;
202#elif defined(__APPLE__)
203 sys = 4;
204#else
205 sys = 0;
206#endif
207
208 return DDS_SYSTEM_PLATFORM[sys];
209}
210
211
212string GetBits()

Callers 1

main_identifyFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected