blob: 181b7bb647945fa44b67eac01d490f59f331484b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#ifndef GISTATIC_TAR_H
#define GISTATIC_TAR_H
int write_tarball_from_directory(const char *const directory_path);
#ifdef TEST
void unit_tests_tar(void);
#endif
#endif
|