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

struct config {
  bool color;
  bool lines;
};

extern struct config conf;

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

#endif