lat/include/arg.h
Shav Kinderlehrer 7e24ad39b1 Cleanup
- Cleanup unneeded headers
- Fix helptext typos/bugs
- add noreturn to die(), and equiv
2023-04-26 18:05:13 -04:00

25 lines
336 B
C

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