silc_hash_table_get
SYNOPSIS
SilcBool silc_hash_table_get(SilcHashTableList *htl, void **key, void **context);
DESCRIPTION
Returns always the next entry in the hash table into the `key' and `context' and TRUE. If this returns FALSE then there are no more entries.
EXAMPLE
SilcHashTableList htl; silc_hash_table_list(hash_table, &htl); while (silc_hash_table_get(&htl, (void *)&key, (void *)&context)) ... silc_hash_table_list_reset(&htl);