From 23c2b99e9d23e726ede9442728272616e66d416f Mon Sep 17 00:00:00 2001 From: Paul Smith Date: Sun, 4 Mar 2012 00:24:20 +0000 Subject: Convert all "`'" quotes to "''" per new GNU Coding Standard guidelines. Fixes Savannah bug #34530. --- hash.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'hash.c') diff --git a/hash.c b/hash.c index b91447c..e04b1bb 100644 --- a/hash.c +++ b/hash.c @@ -26,7 +26,7 @@ static void hash_rehash __P((struct hash_table* ht)); static unsigned long round_up_2 __P((unsigned long rough)); /* Implement double hashing with open addressing. The table size is - always a power of two. The secondary (`increment') hash function + always a power of two. The secondary ('increment') hash function is forced to return an odd-value, in order to be relatively prime to the table size. This guarantees that the increment can potentially hit every slot in the table during collision @@ -61,7 +61,7 @@ hash_init (struct hash_table *ht, unsigned long size, ht->ht_compare = hash_cmp; } -/* Load an array of items into `ht'. */ +/* Load an array of items into 'ht'. */ void hash_load (struct hash_table *ht, void *item_table, @@ -75,9 +75,9 @@ hash_load (struct hash_table *ht, void *item_table, } } -/* Returns the address of the table slot matching `key'. If `key' is +/* Returns the address of the table slot matching 'key'. If 'key' is not found, return the address of an empty slot suitable for - inserting `key'. The caller is responsible for incrementing + inserting 'key'. The caller is responsible for incrementing ht_fill on insertion. */ void ** -- cgit v1.2.3