| 601 | } |
| 602 | |
| 603 | int cvecprintf(vector<char> &v, const char *s, ...) |
| 604 | { |
| 605 | defvformatstring(temp, s, s); |
| 606 | int len = strlen(temp); |
| 607 | if(len) v.put(temp, len); |
| 608 | return len; |
| 609 | } |
| 610 | |
| 611 | int cvecconcat(vector<char> &v, const char *s) |
| 612 | { |
no test coverage detected