blob: 85f6db50d2ffc5ee9e0c6c7b2119051459fd301e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
/**
* @file archive.h
*/
#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
|