| 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 | } |
| 191 | void Chat_Add3(const char* format, const void* a1, const void* a2, const void* a3) { |
| 192 | Chat_Add4(format, a1, a2, a3, NULL); |
| 193 | } |
no test coverage detected