15 #ifndef CCLDICTIONARY_H 16 #define CCLDICTIONARY_H const char * ccl_dictionary_get(ccl_dictionary_t *dictionary, const char *key)
Gets the value for a specific key within an existing ccl_dictionary_t.
struct ccl_dictionary ccl_dictionary_t
Definition: ccl_dictionary.h:18
int ccl_dictionary_put(ccl_dictionary_t *dictionary, const char *key, const char *value)
Adds a key/value pair to an existing ccl_dictionary_t.
void ccl_dictionary_destroy(ccl_dictionary_t *dictionary)
Destroys an existing ccl_dictionary_t.
ccl_dictionary_t * ccl_dictionary_create(void)
Creates a new ccl_dictionary_t.