lat/include/arg.h

21 lines
276 B
C
Raw Permalink Normal View History

#ifndef ARG_H
#define ARG_H
#include <stdbool.h>
2023-04-18 01:07:24 +00:00
#define LAT_VERSION "0.8.0"
2023-04-13 13:03:33 +00:00
struct config {
2023-04-17 22:40:17 +00:00
bool stdin;
2023-04-17 14:23:52 +00:00
bool process;
bool color;
bool lines;
2023-04-18 01:07:24 +00:00
bool force_binary;
2023-04-13 13:24:41 +00:00
bool has_read_stdin;
};
extern struct config conf;
int parseargs(int argc, char *argv[]);
#endif