My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/development/libs/libbowl/hash.h

15 lines
280 B

#ifndef HASH_H_
#define HASH_H_
#include "bowl.h"
err_t hash_insert_key(struct bowl *, char *key, struct bowl *);
err_t hash_remove_key(struct bowl *, char *key, struct bowl **);
err_t hash_free(struct bowl *);
err_t hash_free_shallow(struct bowl_arr *);
#endif // HASH_H_