Lines Matching refs:key

69   dictionary: a section name is given as "section" whereas a key is
70 stored as "section:key", thus the test looks for entries that do not
176 @brief Get the string associated to a key
178 @param key Key string to look for
179 @param def Default value to return if key not found.
182 This function queries a dictionary for a key. A key as read from an
183 ini file is given as "section:key". If the key cannot be found,
189 const char * iniparser_getstring(const dictionary * d, const char * key, const char * def);
193 @brief Get the string associated to a key, convert to an int
195 @param key Key string to look for
199 This function queries a dictionary for a key. A key as read from an
200 ini file is given as "section:key". If the key cannot be found,
218 int iniparser_getint(const dictionary * d, const char * key, int notfound);
222 @brief Get the string associated to a key, convert to an long int
224 @param key Key string to look for
228 This function queries a dictionary for a key. A key as read from an
229 ini file is given as "section:key". If the key cannot be found,
245 long int iniparser_getlongint(const dictionary * d, const char * key, long int notfound);
250 @brief Get the string associated to a key, convert to a double
252 @param key Key string to look for
256 This function queries a dictionary for a key. A key as read from an
257 ini file is given as "section:key". If the key cannot be found,
261 double iniparser_getdouble(const dictionary * d, const char * key, double notfound);
265 @brief Get the string associated to a key, convert to a boolean
267 @param key Key string to look for
271 This function queries a dictionary for a key. A key as read from an
272 ini file is given as "section:key". If the key cannot be found,
295 int iniparser_getboolean(const dictionary * d, const char * key, int notfound);