Skip to content

Instantly share code, notes, and snippets.

@ayende
Created November 27, 2019 16:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ayende/1bb6aec5416e8c8deb1bdac74d7a8779 to your computer and use it in GitHub Desktop.
Save ayende/1bb6aec5416e8c8deb1bdac74d7a8779 to your computer and use it in GitHub Desktop.
uint64_t k, v;
hash_iteration_state_t state;
hash_table_iterate_init(&ctx, &state);
while (hash_table_iterate_next(&state, &k, &v)) {
printf("%llu = %llu\n", k, v);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment