#ifndef TB_RUNTIME_H_ #define TB_RUNTIME_H_ #include struct Token; typedef struct RtCmd { struct RtCmd *next; char *cmdname; bool (*fn)(struct Token *tks); } RtCmd; void rt_init(void); extern RtCmd *RTCMDS; #endif // TB_RUNTIME_H_