| 422 | } |
| 423 | |
| 424 | void String_Format1(cc_string* str, const char* format, const void* a1) { |
| 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 | } |
no test coverage detected