| 89 | SimpleString GetPlatformSpecificTimeString() = TimeStringImplementation; |
| 90 | |
| 91 | int PlatformSpecificVSNprintf(char* str, size_t size, const char* format, va_list args) { |
| 92 | return vsnprintf(str, size, format, args); |
| 93 | } |
| 94 | |
| 95 | void PlatformSpecificFlush() { |
| 96 | fflush(stdout); |
no outgoing calls
no test coverage detected