aboutsummaryrefslogtreecommitdiff
path: root/include/arg.h
blob: a5d63a6dee5b5ecf17d59070867ba19338db9dd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef ARG_H
#define ARG_H
#include <stdbool.h>

#define LAT_VERSION "0.12.3"

struct config {
  bool isstdin;
  bool process;
  bool color;
  bool lines;
  bool headers;
  int force_binary;
  bool literal;
  bool pager;
  char *name;
  char *extension;
  bool has_read_stdin;
};

extern struct config conf;

int parseargs(int argc, char *argv[]);

#endif