1
0
mirror of https://github.com/simon987/deepextract.git synced 2025-04-16 00:26:42 +00:00
2020-01-07 12:12:22 -05:00

10 lines
180 B
C

#include <stdio.h>
#include <archive.h>
int main() {
struct archive *a = archive_read_new();
archive_read_disk_open(a, "");
printf("Hello, World!\n");
return 0;
}