-------------------------------------------------------------------------*/ @brief Delete an entry in a dictionary @param ini Dictionary to modify @param entry Entry to delete (entry name) @return void If the given entry can be found, it is deleted from the dictionary. */ --------------------------------------------------------------------------*/
| 896 | */ |
| 897 | /*--------------------------------------------------------------------------*/ |
| 898 | void iniparser_unset(dictionary * ini, char * entry) |
| 899 | { |
| 900 | dictionary_unset(ini, strlwc(entry)); |
| 901 | } |
| 902 | |
| 903 | |
| 904 | /*-------------------------------------------------------------------------*/ |
nothing calls this directly
no test coverage detected