9 lines
309 B
C
9 lines
309 B
C
|
#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);
|
||
|
|
||
|
#endif /* FILE_UTILS_H */
|