afc_dictionary_succ

Name

afc_dictionary_succ  -- Returns the next element in the Dictionary

Synopsis

void * afc_dictionary_succ ( struct afc_dictionary * dictionary );

Description

Use this function to get the next element in the Dictionary instance. Please, keep in mind that items inside an Hash Table are stored in random order, so the first element may not be the first you have inserted.

Inputs

dictionary

Pointer to a valid afc_dictionary instance.

Result

the value desired or NULL if the Dictionary is empty or you were already pointing to the last item.

See Also