src/hash_map.c

changeset 691
65baf7f45ac8
parent 690
2c2304622981
child 709
1e8ba59e7911
equal deleted inserted replaced
690:2c2304622981 691:65baf7f45ac8
417 cx_hash_map_mut_iterator_keys, 417 cx_hash_map_mut_iterator_keys,
418 cx_hash_map_mut_iterator_values, 418 cx_hash_map_mut_iterator_values,
419 }; 419 };
420 420
421 CxMap *cxHashMapCreate( 421 CxMap *cxHashMapCreate(
422 CxAllocator *allocator, 422 CxAllocator const *allocator,
423 size_t itemsize, 423 size_t itemsize,
424 size_t buckets 424 size_t buckets
425 ) { 425 ) {
426 if (buckets == 0) { 426 if (buckets == 0) {
427 // implementation defined default 427 // implementation defined default

mercurial