diff options
author | pommicket <pommicket@gmail.com> | 2025-09-16 17:08:19 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2025-09-16 17:08:19 -0400 |
commit | 62bb1ffdee060819657161e260e75e3e1df017ac (patch) | |
tree | d47eba6dda1528850c869e067944cdfa009198f9 /examples | |
parent | 7ededc16f36099acbfac457f8e4e268879b0ce62 (diff) |
C++ library fixes
Diffstat (limited to 'examples')
-rw-r--r-- | examples/all_functions.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/all_functions.c b/examples/all_functions.c index 18cce6f..413d114 100644 --- a/examples/all_functions.c +++ b/examples/all_functions.c @@ -150,6 +150,7 @@ int main(void) { printf("\t%s: %s\n", item->key, item->value); } + // iterate over all the keys which haven't been accessed directly pom_unread_key_iter *unread_iter = NULL; const char *unread; while ((unread = pom_conf_next_unread_key(copy, &unread_iter))) { |