cleanups. mainly memory leak fixes

This commit is contained in:
Arnout Engelen
2004-09-14 19:24:01 +00:00
parent cf2f473cd1
commit fc333df257
10 changed files with 92 additions and 109 deletions

View File

@@ -16,6 +16,9 @@ class HashTable
public:
HashTable(int n_size);
~HashTable();
/* after calling 'add', the calling application
* must free the string */
void add(char * key, void * content);
void * get(char * key);