| Function silc_hash_table_list
 
 SYNOPSIS
 
    void silc_hash_table_list(SilcHashTable ht, SilcHashTableList *htl);
DESCRIPTION
    Prepares the `htl' SilcHashTableList sent as argument to be used in the
    hash table traversing with the silc_hash_table_get.  After the hash
    table traversing is completed the silc_hash_table_list_reset must be
    called.
NOTES
    The hash table will not be rehashed during the traversing of the list,
    even if the table was marked as auto rehashable.  The caller also must
    not call silc_hash_table_rehash while traversing the list.
 
 
 
 |