| 2022 | } |
| 2023 | |
| 2024 | void ASConsole::sleep(int seconds) const |
| 2025 | { |
| 2026 | clock_t endwait; |
| 2027 | endwait = clock_t (clock () + seconds * CLOCKS_PER_SEC); |
| 2028 | while (clock() < endwait) {} |
| 2029 | } |
| 2030 | |
| 2031 | bool ASConsole::stringEndsWith(const string &str, const string &suffix) const |
| 2032 | { |
nothing calls this directly
no outgoing calls
no test coverage detected