Changeset c0e4fc50 in mainline for uspace/lib/conf/src/ini.c
- Timestamp:
- 2019-08-03T09:29:55Z (6 years ago)
- Children:
- dda2602
- Parents:
- 5559712
- git-author:
- Michal Koutný <xm.koutny+hos@…> (2015-05-08 11:02:56)
- git-committer:
- Matthieu Riolo <matthieu.riolo@…> (2019-08-03 09:29:55)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/conf/src/ini.c
r5559712 rc0e4fc50 489 489 bool ini_item_iterator_valid(ini_item_iterator_t *iterator) 490 490 { 491 bool empty = (iterator->cur_item != NULL);492 bool looped = (iterator->cur_item == iterator->first_item);493 return empty || (looped && iterator->incremented);491 bool empty = (iterator->cur_item == NULL); 492 bool maybe_looped = (iterator->cur_item == iterator->first_item); 493 return !(empty || (maybe_looped && iterator->incremented)); 494 494 } 495 495
Note:
See TracChangeset
for help on using the changeset viewer.