lat/include/arg.h
Shav Kinderlehrer 69cf5566cf Move to getopt
- everything is single-letter now
2023-04-20 20:31:21 -04:00

25 lines
336 B
C

#ifndef ARG_H
#define ARG_H
#include <stdbool.h>
#define LAT_VERSION "0.11.2"
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