diff options
| author | Fabrice <fabrice@schaub-dev.xyz> | 2026-03-22 21:55:00 +0100 |
|---|---|---|
| committer | Fabrice <fabrice@schaub-dev.xyz> | 2026-03-22 21:55:00 +0100 |
| commit | 6381197d09637de75bf81e7bc9c78b06f878088f (patch) | |
| tree | c1ac1d78217e7ab5943b6f6e967fcea06fa36a18 /cm-demo.c | |
| parent | d499436acfeac2cb64db89cc8ae1219a91d5fc1e (diff) | |
iterator helper
Diffstat (limited to 'cm-demo.c')
| -rw-r--r-- | cm-demo.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -46,7 +46,7 @@ int main(void) { cm_iter_init(&iter, &map); const char** word; int* count; - while (cm_iter_next(&iter, &map, (uint8_t**)&word, (uint8_t**)&count)) { + while (cm_iter_next_(&iter, &map, &word, &count)) { printf(" %s: %d\n", *word, *count); } |
