From d97086b1a144740fa58cffed3e10fdc6d7b0c495 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Sun, 22 Aug 2021 13:34:24 -0300 Subject: src/tar.c: Add link to the reference specification --- src/tar.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/tar.c') diff --git a/src/tar.c b/src/tar.c index 853bbc6..0afcb28 100644 --- a/src/tar.c +++ b/src/tar.c @@ -1,6 +1,13 @@ #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; -- cgit v1.2.3