| 85 | } |
| 86 | |
| 87 | static std::string format_time_short(double ms) { |
| 88 | if (ms < 0) return " -"; |
| 89 | char buf[32]; |
| 90 | snprintf(buf, sizeof(buf), "%.1f", ms); |
| 91 | return buf; |
| 92 | } |
| 93 | |
| 94 | static bool ends_with(const std::string & s, const std::string & suffix) { |
| 95 | if (suffix.size() > s.size()) return false; |