mirror of
https://github.com/simon987/deepextract.git
synced 2025-04-16 00:26:42 +00:00
10 lines
180 B
C
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;
|
|
}
|