19 lines
255 B
C
19 lines
255 B
C
#ifndef TB_RUNTIME_H_
|
|
#define TB_RUNTIME_H_
|
|
|
|
#include <stdbool.h>
|
|
|
|
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_
|