struct SilcHashTableListStruct {
SilcHashTable ht;
void *entry;
- SilcUInt32 index;
- bool auto_rehash;
+ unsigned int index : 31;
+ unsigned int auto_rehash : 1;
};
/***/
* DESCRIPTION
*
* A destructor callback that the library will call to destroy the
- * `key' and `context'. The appliation provides the function when
+ * `key' and `context'. The application provides the function when
* allocating a new hash table. The `user_context' is application
* specific context and is delivered to the callback.
*