-------------------------------------------------------------------------*/ @brief Get the string associated to a key, return NULL if not found @param d Dictionary to search @param key Key string to look for @return pointer to statically allocated character string, or NULL. This function queries a dictionary for a key. A key as read from an ini file is given as "section:key
| 705 | */ |
| 706 | /*--------------------------------------------------------------------------*/ |
| 707 | char * iniparser_getstr(dictionary * d, char * key) |
| 708 | { |
| 709 | return iniparser_getstring(d, key, NULL); |
| 710 | } |
| 711 | |
| 712 | |
| 713 | /*-------------------------------------------------------------------------*/ |
nothing calls this directly
no test coverage detected