| 12 | #endif |
| 13 | |
| 14 | int String_CalcLen(const char* raw, int capacity) { |
| 15 | int length = 0; |
| 16 | while (length < capacity && *raw) { raw++; length++; } |
| 17 | return length; |
| 18 | } |
| 19 | |
| 20 | int String_Length(const char* raw) { |
| 21 | int length = 0; |
no outgoing calls
no test coverage detected