config rotation + redundancy prototype

This commit is contained in:
tildearrow 2023-04-05 17:35:01 -05:00
parent e6bac16a7a
commit e16fdf0626
3 changed files with 79 additions and 0 deletions

View file

@ -22,5 +22,9 @@
#include <stdio.h>
FILE* ps_fopen(const char* path, const char* mode);
bool moveFiles(const char* src, const char* dest);
bool deleteFile(const char* path);
// returns 1 if file exists, 0 if it doesn't and -1 on error.
int fileExists(const char* path);
#endif