| 110 | } |
| 111 | |
| 112 | static const char* DosTimeString() |
| 113 | { |
| 114 | time_t tm = time(NULL); |
| 115 | return ctime(&tm); |
| 116 | } |
| 117 | |
| 118 | static int DosVSNprintf(char* str, size_t size, const char* format, va_list args) { |
| 119 | return vsnprintf(str, size, format, args); |
nothing calls this directly
no outgoing calls
no test coverage detected