aboutsummaryrefslogtreecommitdiff
path: root/src/tar.h
blob: ce1b1fb3e6f764411cf94d39382d3848cc5bf828 (plain) (blame)
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