Files
fallout2-ce/src/file_utils.h
Alexander Batalov 9bb053b3ba Add namespace (#155)
2022-09-23 15:43:44 +03:00

13 lines
354 B
C++

#ifndef FILE_UTILS_H
#define FILE_UTILS_H
namespace fallout {
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);
} // namespace fallout
#endif /* FILE_UTILS_H */