diff options
author | Luiz Capitulino <lcapitulino@redhat.com> | 2010-06-07 16:07:29 -0300 |
---|---|---|
committer | Luiz Capitulino <lcapitulino@redhat.com> | 2010-07-01 14:27:13 -0300 |
commit | f2b07f35d2ee1c6a501d1e3c68c0db42c70751fd (patch) | |
tree | 765bea2ee1cbe966fedcf962e00e48aedf343d19 /module.h | |
parent | 0d078b2adec72fd74b00defb260724b33e87e184 (diff) |
QDict: Introduce new iteration API
It's composed of functions qdict_first() and qdict_next(), plus
functions to access QDictEntry values.
This API was suggested by Markus Armbruster <armbru@redhat.com> and
it offers full control over the iteration process.
The usage is simple, the following example prints all keys in 'qdict'
(it's hopefully better than any English description):
QDict *qdict;
const QDictEntry *ent;
[...]
for (ent = qdict_first(qdict); ent; ent = qdict_next(qdict, ent)) {
printf("%s ", qdict_entry_key(ent));
}
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Diffstat (limited to 'module.h')
0 files changed, 0 insertions, 0 deletions