update stuff

This commit is contained in:
alessandro bason 2025-06-15 11:32:55 +02:00
parent 6d36aa4442
commit 95d74c2ef4
13 changed files with 1196 additions and 48 deletions

14
pretty_print.h Normal file
View file

@ -0,0 +1,14 @@
#pragma once
#if 0
pretty_print(arena,
"<red>error!</><blue>%s!</>", "wow");
#endif
#include "arena.h"
void pretty_print(arena_t scratch, const char *fmt, ...);
void pretty_printv(arena_t scratch, const char *fmt, va_list args);