Get rid of writefmt functions

This commit is contained in:
2025-09-28 20:10:41 +02:00
parent 96ce9233ff
commit 1fd6c4e221
15 changed files with 80 additions and 262 deletions

View File

@ -18,12 +18,12 @@ RtAlias *RTALIASES = NULL;
bool rt_print(Token *tks) {
Token *tk, *tktmp;
LL_FOREACH_SAFE(tks, tk, tktmp) {
writefmt("{s}", tk->str);
uprintf("%s", tk->str);
if (tk->next != NULL) {
writefmt(" ");
uprintf(" ");
}
}
writefmt("\n");
uprintf("\n");
return true;
}