fallout2-ce/src/file_utils.h

10 lines
395 B
C
Raw Normal View History

2022-05-19 01:51:26 -07:00
#ifndef FILE_UTILS_H
#define FILE_UTILS_H
int fileCopyDecompressed(const char* existingFilePath, const char* newFilePath);
int fileCopyCompressed(const char* existingFilePath, const char* newFilePath);
int _gzdecompress_file(const char* existingFilePath, const char* newFilePath);
2022-05-28 01:29:45 -07:00
void fileCopy(const char* existingFilePath, const char* newFilePath, bool overwrite);
2022-05-19 01:51:26 -07:00
#endif /* FILE_UTILS_H */