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

14 lines
145 B
C

#include <stdbool.h>
struct gc_flags
{
size_t minimum;
size_t run_every;
size_t process_limit;
bool dotout;
};