#ifndef ARG_H #define ARG_H #include #define LAT_VERSION "0.10.1" struct config { bool stdin; bool process; bool color; bool lines; bool headers; int force_binary; bool pager; bool has_read_stdin; }; extern struct config conf; int parseargs(int argc, char *argv[]); #endif