(svn r20880) -Codechange: Make Hash_Size a method.

This commit is contained in:
alberth
2010-10-02 19:38:22 +00:00
parent a7ffc9a268
commit 6ea5643e40
3 changed files with 9 additions and 10 deletions

View File

@@ -511,8 +511,3 @@ void *Hash_Get(const Hash *h, uint key1, uint key2)
#endif
return (node != NULL) ? node->value : NULL;
}
uint Hash_Size(const Hash *h)
{
return h->size;
}