#ifndef _state_h #define _state_h typedef struct _state State; #include "vm.h" #include "ht.h" struct _state { Thread *th; Ht strings; Ht globals; }; State state_new(); #endif