Get rid of writefmt functions
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user