| 183 | } |
| 184 | |
| 185 | void Chat_Add1(const char* format, const void* a1) { |
| 186 | Chat_Add4(format, a1, NULL, NULL, NULL); |
| 187 | } |
| 188 | void Chat_Add2(const char* format, const void* a1, const void* a2) { |
| 189 | Chat_Add4(format, a1, a2, NULL, NULL); |
| 190 | } |
no test coverage detected