| 583 | } |
| 584 | |
| 585 | string remove_prepended_the(string s) |
| 586 | { |
| 587 | if (starts_with(s, "the ")) |
| 588 | s.erase(0, 4); // strlen("the ") |
| 589 | return s; |
| 590 | } |
| 591 | |
| 592 | // Crude, but functional. |
| 593 | string make_time_string(time_t abs_time, bool terse) |
no test coverage detected