mirror of
https://git.checksum.fail/alec/Web.git
synced 2026-05-27 05:09:47 +00:00
10 lines
172 B
HolyC
10 lines
172 B
HolyC
U0 @debug(U8 *fmt, ...) {
|
|
U8 *buf = StrPrintJoin(NULL, fmt, argc, argv);
|
|
PutS(buf);
|
|
Free(buf);
|
|
}
|
|
|
|
U0 @vbox_debug_print(U8 *s) {
|
|
while (*s)
|
|
OutU8(0x504, *s++);
|
|
} |