summaryrefslogtreecommitdiff
path: root/util.h
diff options
context:
space:
mode:
authorMichael Pavone <pavone@retrodev.com>2019-04-24 19:08:49 -0700
committerMichael Pavone <pavone@retrodev.com>2019-04-24 19:08:49 -0700
commit3905002957a7670fd6ad0762c1a961ae5b7e9810 (patch)
treebd776faa7b78c99d3eae4736ed326eaaf4e2ef1e /util.h
parentf7b6f7fbd9f12ad6ce58496ec87ed7fc67a1dbfc (diff)
Allow config file to be saved with executable for "portable" setups
Diffstat (limited to 'util.h')
-rw-r--r--util.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/util.h b/util.h
index a32de10..0532fd5 100644
--- a/util.h
+++ b/util.h
@@ -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_