summaryrefslogtreecommitdiff
path: root/include/options.h
blob: c43c811a5ae0e5c61d754735a93bc731f7cdc490 (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 copy;
} CLIOpts;


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

#endif