| 118 | |
| 119 | |
| 120 | int String_Equals(const cc_string* a, const cc_string* b) { |
| 121 | return a->length == b->length && Mem_Equal(a->buffer, b->buffer, a->length); |
| 122 | } |
| 123 | |
| 124 | int String_CaselessEquals(const cc_string* a, const cc_string* b) { |
| 125 | int i; |
no test coverage detected