| 79 | } |
| 80 | |
| 81 | std::string FormatShortDate(std::time_t timestamp) |
| 82 | { |
| 83 | setlocale(LC_TIME, ""); |
| 84 | char date[20]; |
| 85 | std::strftime(date, sizeof(date), "%x", std::localtime(×tamp)); |
| 86 | return std::string(date); |
| 87 | } |
| 88 | |
| 89 | std::string FormatTime(std::time_t timestamp) |
| 90 | { |
no outgoing calls
no test coverage detected