blob: 264a0d940a65f6b620b5a6b398b4f0d3b90327e2 (
plain) (
blame)
1
2
3
4
5
6
7
|
#ifndef SPM_ARCHIVE_H
#define SPM_ARCHIVE_H
int tar_extract_archive(const char *_archive, const char *_destination);
int tar_extract_file(const char *archive, const char* filename, const char *destination);
#endif //SPM_ARCHIVE_H
|