lisp-take-1/cmdln/struct.h
2024-11-28 18:36:25 -06:00

24 lines
420 B
C

#include <gc/flags.h>
struct cmdln_flags
{
struct gc_flags gc_flags;
// size_t minimum;
// size_t retrigger;
// size_t process_limit;
// bool dotout;
bool macro_expansion_dotout;
bool evaluation_dotout;
bool verbose;
// print expression before evaluating
const char* input_file;
// "-" means stdin
char* const* argv;
};