Guest User

Untitled

a guest
Aug 15th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. ptrdiff_t c_hash_map_for_each(const c_hash_map *const _hash_map,
  2. void (*const _action_key)(const void *const _key),
  3. void (*const _action_data)(void *const _data));
  4.  
  5. ptrdiff_t c_hash_map_for_each(c_hash_map *const _hash_map,
  6. void (*const _action_key)(const void *const _key),
  7. void (*const _action_data)(void *const _data));
  8.  
  9. //...
  10. mutable int value;
  11. //...
Add Comment
Please, Sign In to add comment