| 34 | |
| 35 | |
| 36 | void String_Copy(cc_string* dst, const cc_string* src) { |
| 37 | dst->length = 0; |
| 38 | String_AppendString(dst, src); |
| 39 | } |
| 40 | |
| 41 | int String_CopyToRaw(char* dst, int capacity, const cc_string* src) { |
| 42 | int i, len = min(capacity, src->length); |
no test coverage detected