Name
afc_dictionary_get   -- Retrieves the data of a specified key
Synopsis
        void * afc_dictionary_set
                  
        
      ( struct afc_dictionary * dictionary,  char * key );
Description
Use this function to get the data stored in a key.
    
Inputs
- dictionary
-  Pointer to a valid afc_dictionary instance. 
- key
-  afc_string_new containing the key of the item in the dictionary. 
Result
the value binded to the key, or NULL if the key cannot be found.