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

#define LAT_VERSION "0.4.0"

struct config {
  bool process;
  bool color;
  bool lines;
  bool has_read_stdin;
};

extern struct config conf;

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

#endif