Files
my-os-project2/user/tb/runtime.h
2025-09-14 23:31:14 +02:00

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_