Changes in uspace/lib/c/generic/cfg.c [feeac0d:9d58539] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/cfg.c
rfeeac0d r9d58539 83 83 return true; 84 84 85 cfg_file_foreach(data, section) { 85 list_foreach(data->sections, link) { 86 const cfg_section_t *section = cfg_section_instance(link); 87 86 88 if (!list_empty(§ion->entries)) 87 89 return false; … … 411 413 const cfg_section_t *cfg_find_section(const cfg_file_t *data, const char *title) 412 414 { 413 cfg_file_foreach(data, section) { 415 list_foreach(data->sections, link) { 416 const cfg_section_t *section = cfg_section_instance(link); 417 414 418 if (str_cmp(section->title, title) == 0) 415 419 return section; … … 430 434 const char *cfg_find_value(const cfg_section_t *section, const char *key) 431 435 { 432 cfg_section_foreach(section, entry) { 436 list_foreach(section->entries, link) { 437 const cfg_entry_t *entry = cfg_entry_instance(link); 438 433 439 if (str_cmp(entry->key, key) == 0) 434 440 return entry->value;
Note:
See TracChangeset
for help on using the changeset viewer.