From bdefece969c640b12069b40f74322c20d2663491 Mon Sep 17 00:00:00 2001 From: jbj Date: Fri, 17 Sep 1999 20:15:22 +0000 Subject: [PATCH] lclinit annotations. CVS patchset: 3286 CVS date: 1999/09/17 20:15:22 --- lib/hash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/hash.h b/lib/hash.h index f7fee836f..ee95b444f 100644 --- a/lib/hash.h +++ b/lib/hash.h @@ -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);