src/cx/hash_map.h

changeset 691
65baf7f45ac8
parent 677
b09aae58bba4
child 696
1ba4ec2e7a89
equal deleted inserted replaced
690:2c2304622981 691:65baf7f45ac8
82 * @param buckets the initial number of buckets in this hash map 82 * @param buckets the initial number of buckets in this hash map
83 * @return a pointer to the new hash map 83 * @return a pointer to the new hash map
84 */ 84 */
85 __attribute__((__nonnull__, __warn_unused_result__)) 85 __attribute__((__nonnull__, __warn_unused_result__))
86 CxMap *cxHashMapCreate( 86 CxMap *cxHashMapCreate(
87 CxAllocator *allocator, 87 CxAllocator const *allocator,
88 size_t itemsize, 88 size_t itemsize,
89 size_t buckets 89 size_t buckets
90 ); 90 );
91 91
92 /** 92 /**

mercurial