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

#include <archive.h>

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

    (void)argc;
    (void)argv;

    tgz = archive_write_new();
    archive_write_set_options(tgz, "gzip=9");
    archive_write_set_format_ustar(tgz);
    archive_write_free(tgz);

    return 0;
}