TB print hello world

This commit is contained in:
2025-09-14 23:31:14 +02:00
parent 062e98d714
commit 40ccb7d476
6 changed files with 322 additions and 0 deletions

18
user/tb/runtime.h Normal file
View File

@ -0,0 +1,18 @@
#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_