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