mirror of
https://github.com/simon987/deepextract.git
synced 2025-04-04 08:53:00 +00:00
20 lines
275 B
C
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
|