(svn r20884) -Codechange: Make clear_Hash a method.

This commit is contained in:
alberth
2010-10-02 19:43:29 +00:00
parent f185a35269
commit d86f781ca5
3 changed files with 15 additions and 14 deletions

View File

@@ -91,6 +91,8 @@ struct Hash {
void *DeleteValue(uint key1, uint key2);
void Clear(bool free_values);
/**
* Gets the current size of the hash.
*/
@@ -116,9 +118,5 @@ void init_Hash(Hash *h, Hash_HashProc *hash, uint num_buckets);
* are left in the hash.
*/
void delete_Hash(Hash *h, bool free_values);
/**
* Cleans the hash, but keeps the memory allocated
*/
void clear_Hash(Hash *h, bool free_values);
#endif /* QUEUE_H */