| 513 | const char *modestr(int n, bool acronyms) { return acronyms ? acronymmodestr (n) : fullmodestr(n); } |
| 514 | const char *voteerrorstr(int n) { return (n>=0 && (size_t)n < sizeof(voteerrors)/sizeof(voteerrors[0])) ? voteerrors[n] : "unknown"; } |
| 515 | const char *mmfullname(int n) { return (n>=0 && n < MM_NUM) ? mmfullnames[n] : "unknown"; } |
| 516 | |
| 517 | int defaultgamelimit(int gamemode) { return m_teammode ? 15 : 10; } |
| 518 |
no outgoing calls
no test coverage detected