| 425 | String_Format4(str, format, a1, NULL, NULL, NULL); |
| 426 | } |
| 427 | void String_Format2(cc_string* str, const char* format, const void* a1, const void* a2) { |
| 428 | String_Format4(str, format, a1, a2, NULL, NULL); |
| 429 | } |
| 430 | void String_Format3(cc_string* str, const char* format, const void* a1, const void* a2, const void* a3) { |
| 431 | String_Format4(str, format, a1, a2, a3, NULL); |
| 432 | } |
no test coverage detected