1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#ifndef GISTATIC_TAR_H #define GISTATIC_TAR_H #include <stdio.h> int tarball_write_from_directory( const FILE *const fd, const char *const directory_path ); #ifdef TEST void unit_tests_tar(void); #endif #endif