1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef CORR_H
#define CORR_H
#include <regex.h>
#include "args.h"
typedef struct
{
args_t args;
regex_t regex;
} corr_t;
void corr_init(corr_t* corr);
int corr_run(corr_t* corr, int argc, char* argv[]);
void corr_destroy(corr_t* corr);
#endif // CORR_H