| 217 | } |
| 218 | |
| 219 | int CmpStartStr(const char* str, const char* start) |
| 220 | { |
| 221 | while (*start) |
| 222 | { |
| 223 | if (normSlash(myLower(*str++)) != normSlash(myLower(*start++))) |
| 224 | { |
| 225 | return 1; |
| 226 | } |
| 227 | } |
| 228 | return 0; |
| 229 | } |
| 230 | |
| 231 | bool QIFStream::FileReadOnly(const char* name) |
| 232 | { |
no test coverage detected