| 531 | //==================================================================== |
| 532 | |
| 533 | FConfigFile::FConfigEntry *FConfigFile::FindEntry ( |
| 534 | FConfigFile::FConfigSection *section, const char *key) const |
| 535 | { |
| 536 | FConfigEntry *probe = section->RootEntry; |
| 537 | |
| 538 | while (probe != NULL && stricmp (probe->Key, key) != 0) |
| 539 | { |
| 540 | probe = probe->Next; |
| 541 | } |
| 542 | return probe; |
| 543 | } |
| 544 | |
| 545 | //==================================================================== |
| 546 | // |
no test coverage detected