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


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


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

#endif