lat/include/arg.h
2023-04-17 21:13:20 -04:00

21 lines
276 B
C

#ifndef ARG_H
#define ARG_H
#include <stdbool.h>
#define LAT_VERSION "0.8.0"
struct config {
bool stdin;
bool process;
bool color;
bool lines;
bool force_binary;
bool has_read_stdin;
};
extern struct config conf;
int parseargs(int argc, char *argv[]);
#endif