9 lines
216 B
C
9 lines
216 B
C
#ifndef FILEUTILS_H
|
|
#define FILEUTILS_H
|
|
|
|
bool doesFileExist(const char *source);
|
|
bool copyFile(const char *source, const char *target);
|
|
bool deleteFile(const char *source);
|
|
void printFile(const char *source);
|
|
|
|
#endif |