| 202 | } |
| 203 | |
| 204 | const char* SimpleString::StrStr(const char* s1, const char* s2) |
| 205 | { |
| 206 | if(!*s2) return s1; |
| 207 | for (; *s1; s1++) |
| 208 | if (StrNCmp(s1, s2, StrLen(s2)) == 0) |
| 209 | return s1; |
| 210 | return NULLPTR; |
| 211 | } |
| 212 | |
| 213 | char SimpleString::ToLower(char ch) |
| 214 | { |
nothing calls this directly
no outgoing calls
no test coverage detected