Refactoring, adding printf / printfn to all streams.

This commit is contained in:
Christoffer Lerno
2023-09-03 02:20:33 +02:00
committed by Christoffer Lerno
parent 9a6d83f526
commit 4c081f59ff
19 changed files with 2842 additions and 715 deletions

View File

@@ -349,7 +349,7 @@ fn DString new_join(String[] s, String joiner, Allocator* using = mem::heap())
return res;
}
fn void! out_string_append_fn(char c, void* data) @private
fn void! out_string_append_fn(void* data, char c) @private
{
DString* s = data;
s.append_char(c);