Merge all libs into libu
All checks were successful
Build ISO image / build-and-deploy (push) Successful in 40s
Build documentation / build-and-deploy (push) Successful in 26s

This commit is contained in:
2026-04-12 13:45:37 +02:00
parent 55ff95c897
commit 6c01de8b0d
160 changed files with 131 additions and 692 deletions

12
libu/debugconsole.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef _LIBDEBUGCONSOLE_DEBUGCONSOLE_H
#define _LIBDEBUGCONSOLE_DEBUGCONSOLE_H
#include <stddef.h>
#define DEBUG_PRINTF_MAX (16 * 1024)
int debugconsole_print (const char* string, size_t len);
void debug_printf (const char* fmt, ...);
#endif // _LIBDEBUGCONSOLE_DEBUGCONSOLE_H