aboutsummaryrefslogtreecommitdiff
path: root/src/tar.c
blob: 0afcb28d49a3dd1421c6c7f2fc815e571ab263ae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "config.h"
#include "tar.h"

/*
 * Implementation of the "ustar archive tape" (tar) format, conformant to the
 * specification [0].
 *
 * [0]: https://pubs.opengroup.org/onlinepubs/9699919799/utilities/pax.html#tag_20_92_13_06
 */

int tarball_write_from_directory(const char *const directory_path) {
	(void)directory_path;
	return 0;
}

#ifdef TEST
void unit_tests_tar(void) {}
#endif