| 880 | /*--------------------------------------------------------------------------*/ |
| 881 | |
| 882 | int iniparser_setstr(dictionary * ini, char * entry, char * val) |
| 883 | { |
| 884 | dictionary_set(ini, strlwc(entry), val); |
| 885 | return 0 ; |
| 886 | } |
| 887 | |
| 888 | /*-------------------------------------------------------------------------*/ |
| 889 | /** |
nothing calls this directly
no test coverage detected