1 #include "fs.h"
2 #include "link.h"
3 
4 #include <regex.h>
5 #include <stdbool.h>
6 
7 
8 #ifndef ARCHIVE
9 #define ARCHIVE
10 struct archive
11 	{
12 	struct path file, sandbox;
13 	struct link links;
14 	struct extractor *extr;
15 	regoff_t lname;
16 	};
17 #endif
18 
19 
20 bool extract(const char *arg);
21