sandbox/system.h

15 lines
220 B
C
Raw Normal View History

2018-02-25 06:35:58 +00:00
#ifndef __KF_CORE_H__
#define __KF_CORE_H__
#include "defs.h"
#include "io.h"
#include "stack.h"
typedef struct _System {
Stack<KF_INT> dstack;
IO *interface;
struct Word *dict;
2018-02-25 06:35:58 +00:00
} System;
#endif // __KF_CORE_H__