2022-05-19 01:51:26 -07:00
|
|
|
#ifndef FILE_UTILS_H
|
|
|
|
#define FILE_UTILS_H
|
|
|
|
|
2022-09-23 05:43:44 -07:00
|
|
|
namespace fallout {
|
|
|
|
|
2022-05-19 01:51:26 -07:00
|
|
|
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-09-23 05:43:44 -07:00
|
|
|
} // namespace fallout
|
|
|
|
|
2022-05-19 01:51:26 -07:00
|
|
|
#endif /* FILE_UTILS_H */
|