MCPcopy Create free account
hub / github.com/ZDoom/Raze / FindEntry

Method FindEntry

source/common/utility/configfile.cpp:533–543  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

531//====================================================================
532
533FConfigFile::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//

Callers 8

ParseAllGrpInfosFunction · 0.45
GrpScanFunction · 0.45
ReadSavegameFunction · 0.45
ReadSaveStringsMethod · 0.45
OpenFileMethod · 0.45
ProcessOneFileMethod · 0.45
ExtractSaveDataMethod · 0.45
LoadFileFunction · 0.45

Calls 1

stricmpFunction · 0.85

Tested by

no test coverage detected