Remove % prefix for builtin commands

This commit is contained in:
2025-10-01 22:50:27 +02:00
parent 0232849994
commit 91d648ade4
5 changed files with 25 additions and 15 deletions

View File

@ -30,6 +30,13 @@ void rt_init(void);
extern RtCmd *RTCMDS;
extern RtAlias *RTALIASES;
bool rt_print(struct Token *);
bool rt_mkalias(struct Token *);
bool rt_PID(struct Token *);
bool rt_do(struct Token *);
bool rt_stackpush(struct Token *);
bool rt_stackpop(struct Token *);
void rtstringv_stackpushcopy(char *s, size_t len);
char *rtstringv_stackpop(void);
char *rtstringv_stackpeek(void);