lat/include/arg.h
Shav Kinderlehrer 5f01703842 Add args
- --help
- --version
2023-04-13 09:03:33 -04:00

17 lines
202 B
C

#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