| 87 | } |
| 88 | |
| 89 | std::string FormatTime(std::time_t timestamp) |
| 90 | { |
| 91 | setlocale(LC_TIME, ""); |
| 92 | char time[20]; |
| 93 | std::strftime(time, sizeof(time), "%X", std::localtime(×tamp)); |
| 94 | return std::string(time); |
| 95 | } |
| 96 | |
| 97 | bool IsColourTerminalSupported() |
| 98 | { |
no outgoing calls
no test coverage detected