blob: 02ca36098ec1dec7db0773b2e81767ba2168a76e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef ARG_H
#define ARG_H
#include <stdbool.h>
#define LAT_VERSION "0.4.0"
struct config {
bool color;
bool lines;
};
extern struct config conf;
int parseargs(int argc, char *argv[]);
#endif
|