Lines Matching full:ini

6    @brief   Parser for ini files.
249 @brief Save a dictionary to a loadable ini file
254 This function dumps a given dictionary into a loadable ini file.
286 @brief Save a dictionary section to a loadable ini file
292 This function dumps a given section of a given dictionary into a loadable ini
407 ini file is given as "section:key". If the key cannot be found,
436 ini file is given as "section:key". If the key cannot be found,
473 ini file is given as "section:key". If the key cannot be found,
505 ini file is given as "section:key". If the key cannot be found,
527 ini file is given as "section:key". If the key cannot be found,
570 @param ini Dictionary to search
579 int iniparser_find_entry(const dictionary * ini, const char * entry) in iniparser_find_entry() argument
582 if (iniparser_getstring(ini, entry, INI_INVALID_KEY) != INI_INVALID_KEY) { in iniparser_find_entry()
591 @param ini Dictionary to modify.
601 int iniparser_set(dictionary * ini, const char * entry, const char * val) in iniparser_set() argument
604 return dictionary_set(ini, strlwc(entry, tmp_str, sizeof(tmp_str)), val) ; in iniparser_set()
610 @param ini Dictionary to modify
617 void iniparser_unset(dictionary * ini, const char * entry) in iniparser_unset() argument
620 dictionary_unset(ini, strlwc(entry, tmp_str, sizeof(tmp_str))); in iniparser_unset()
625 @brief Load a single line from an INI file
702 @brief Parse an ini file and return an allocated dictionary object
703 @param ininame Name of the ini file to read.
706 This is the parser for ini files. This function is called, providing
824 @brief Free all memory associated to an ini dictionary
828 Free all memory associated to an ini dictionary.