deepextract/extract.h
2020-01-11 15:42:18 -05:00

20 lines
275 B
C

#ifndef DEEPEXTRACT_EXTRACT_H
#define DEEPEXTRACT_EXTRACT_H
#include "tpool.h"
#define TRUE 1
#define FALSE 0
#define _XOPEN_SOURCE 500
typedef struct args {
int version;
int verbose;
int dry_run;
int threads;
} args_t;
int extract(args_t *args);
#endif