c43c811a5ae0e5c61d754735a93bc731f7cdc490
[centaur.git] / include / options.h
1 #ifndef __OPTIONS_H__
2 #define __OPTIONS_H__
3
4
5 typedef struct {
6   char *fnInput;
7   char *fnOutput;
8   int printHeader;
9   int printSegments;
10   int printSections;
11   int copy;
12 } CLIOpts;
13
14
15 void parseOptions(CLIOpts *opts, int argc, char **argv);
16
17 #endif