diff options
Diffstat (limited to 'state.h')
-rw-r--r-- | state.h | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -0,0 +1,15 @@ +#ifndef _state_h +#define _state_h + +typedef struct _state State; + +#include "vm.h" +#include "ht.h" + +struct _state { + Thread *th; + Ht strings; +}; +State state_new(); + +#endif |