* hash table to operate on
*
* data
- * data to insert or retrieve
+ * data to insert or retrieve - A hash backet will not be created if
+ * the alloc_func returns a NULL pointer and nothing will be added to
+ * the hash. As such backet->data will always be non-NULL.
*
* alloc_func
* function to call if the item is not found in the hash table. This
* during the walk will cause undefined behavior in that some new entries
* will be walked and some will not. So do not do this.
*
+ * The backet passed to func will have a non-NULL data pointer.
+ *
* hash
* hash table to operate on
*
* during the walk will cause undefined behavior in that some new entries
* will be walked and some will not. So do not do this.
*
+ * The backet passed to func will have a non-NULL data pointer.
+ *
* hash
* hash table to operate on
*