delete converted savefile as a normal course of action */
| 2154 | |
| 2155 | /* delete converted savefile as a normal course of action */ |
| 2156 | int |
| 2157 | delete_convertedfile(const char *basefilename) |
| 2158 | { |
| 2159 | if (!converted_filename) |
| 2160 | make_converted_name(basefilename); |
| 2161 | if (converted_filename) { |
| 2162 | (void) unlink(converted_filename); |
| 2163 | } |
| 2164 | return 0; |
| 2165 | } |
| 2166 | |
| 2167 | void |
| 2168 | free_convert_filenames(void) |
no test coverage detected