|
Cyber Garage Portable Runtime (CGPR) for C
|
Functions | |
| CGDictionary * | cg_dictionary_new (void) |
| void | cg_dictionary_delete (CGDictionary *dictionaryList) |
| CGDictionaryElement * | cg_dictionary_getelement (CGDictionary *dir, const char *key) |
| void | cg_dictionary_setvalue (CGDictionary *dir, const char *key, const char *value) |
| const char * | cg_dictionary_getvalue (CGDictionary *dir, const char *key) |
| void cg_dictionary_delete | ( | CGDictionary * | dir | ) |
Destroy a dictionary list
| dir | The dictionary list in question |
| CGDictionaryElement * cg_dictionary_getelement | ( | CGDictionary * | dir, |
| const char * | key ) |
| const char * cg_dictionary_getvalue | ( | CGDictionary * | dir, |
| const char * | key ) |
Get a value of the specified key
| dir | The dictionary list in question |
| key | Name to search. |
| CGDictionary * cg_dictionary_new | ( | void | ) |
Create a new dictionary list
| void cg_dictionary_setvalue | ( | CGDictionary * | dir, |
| const char * | key, | ||
| const char * | value ) |
Set a new element into a dictionary
| dir | The dictionary list in question |
| key | Name to set. |
| value | Value to set. |