You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mxe/src/libarchive-test.c

22 lines
361 B

/*
* This file is part of MXE.
* See 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;
}