diff options
author | Michael Pavone <pavone@retrodev.com> | 2019-04-24 19:08:49 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2019-04-24 19:08:49 -0700 |
commit | 3905002957a7670fd6ad0762c1a961ae5b7e9810 (patch) | |
tree | bd776faa7b78c99d3eae4736ed326eaaf4e2ef1e /util.h | |
parent | f7b6f7fbd9f12ad6ce58496ec87ed7fc67a1dbfc (diff) |
Allow config file to be saved with executable for "portable" setups
Diffstat (limited to 'util.h')
-rw-r--r-- | util.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -88,5 +88,7 @@ void warning(char *format, ...); void debug_message(char *format, ...); //Disables output of info and debug messages to stdout void disable_stdout_messages(void); +//Deletes a file, returns true on success, false on failure +uint8_t delete_file(char *path); #endif //UTIL_H_ |