ee9d612780c026d6798c5ec21b48db10018f2a92
[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   unsigned insertBeforeOffs;
12   unsigned insertBeforeSz;
13 } CLIOpts;
14
15
16 void parseOptions(CLIOpts *opts, int argc, char **argv);
17
18 #endif