lclinit annotations.

CVS patchset: 3286
CVS date: 1999/09/17 20:15:22
This commit is contained in:
jbj 1999-09-17 20:15:22 +00:00
parent 315eb02ffa
commit bdefece969
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ int hashEqualityString(const void * key1, const void * key2);
hashTable htCreate(int numBuckets, int keySize, hashFunctionType fn,
hashEqualityType eq);
void htAddEntry(hashTable ht, const void * key, const void * data);
void htFree(hashTable ht);
void htFree(/*@only@*/hashTable ht);
/* returns 0 on success, 1 if the item is not found. tableKey may be NULL */
int htGetEntry(hashTable ht, const void * key, /*@out@*/const void *** data, /*@out@*/int * dataCount,
/*@out@*/const void ** tableKey);