summaryrefslogtreecommitdiff
path: root/include/options.h
blob: 48f6580386f6d468c9883cd461a370fc6f95c662 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef __OPTIONS_H__
#define __OPTIONS_H__


typedef struct {
  char *fnInput;
  char *fnOutput;
  int printHeader;
  int printSegments;
  int printSections;
  int copy;
  int model;
} CLIOpts;


void parseOptions(CLIOpts *opts, int argc, char **argv);

#endif