summaryrefslogtreecommitdiffstats
path: root/src/libarchive-test.c
blob: d6ab632e89ce29fefe7e86d76271bd7fa56bb7d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* This file is part of MXE.                   */
/* See doc/index.html for further information. */

#include <archive.h>

int main(int argc, char *argv[])
{
    struct archive *tgz;

    (void)argc;
    (void)argv;

    tgz = archive_write_new();
    archive_write_set_compression_gzip(tgz);
    archive_write_set_format_ustar(tgz);
    archive_write_finish(tgz);

    return 0;
}