| 168 | } |
| 169 | |
| 170 | int32 StringUtils::Length(const Char* str) |
| 171 | { |
| 172 | if (!str) |
| 173 | return 0; |
| 174 | const Char* ptr = str; |
| 175 | for (; *ptr; ++ptr) |
| 176 | { |
| 177 | } |
| 178 | return ptr - str; |
| 179 | } |
| 180 | |
| 181 | int32 StringUtils::Length(const char* str) |
| 182 | { |
no outgoing calls
no test coverage detected