lat/include/arg.h
Shav Kinderlehrer 58e0d435c3 Add args
- add color arg
- add lines arg
2023-04-12 23:46:53 -04:00

15 lines
173 B
C

#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