f92298f788c1937a29ac11dea0d9e382c239aee4
[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   unsigned insertAfterOffs;
14   unsigned insertAfterSz;
15 } CLIOpts;
16
17
18 void parseOptions(CLIOpts *opts, int argc, char **argv);
19
20 #endif