more asset preparation

This commit is contained in:
Prakxo
2023-03-14 08:36:15 +00:00
parent b3050638b2
commit bcebb21d48
14 changed files with 174 additions and 11 deletions
+11
View File
@@ -0,0 +1,11 @@
#ifndef MSL_PRINTF_H
#define MSL_PRINTF_H
#include "types.h"
#include "va_args.h"
void vprintf(const char*, va_list);
void print(const char*, ...);
#endif