src/cx/hash_map.h

changeset 890
54565fd74e74
parent 855
35bcb3216c0d
equal deleted inserted replaced
889:f549fd9fbd8f 890:54565fd74e74
81 * @param buckets the initial number of buckets in this hash map 81 * @param buckets the initial number of buckets in this hash map
82 * @return a pointer to the new hash map 82 * @return a pointer to the new hash map
83 */ 83 */
84 __attribute__((__nonnull__, __warn_unused_result__)) 84 __attribute__((__nonnull__, __warn_unused_result__))
85 CxMap *cxHashMapCreate( 85 CxMap *cxHashMapCreate(
86 CxAllocator const *allocator, 86 const CxAllocator *allocator,
87 size_t itemsize, 87 size_t itemsize,
88 size_t buckets 88 size_t buckets
89 ); 89 );
90 90
91 /** 91 /**

mercurial