Debug printing functions

This commit is contained in:
2017-12-01 22:16:26 +01:00
parent a766726065
commit d05ddfeab4
3 changed files with 242 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
#pragma once
#include <stddef.h>
#include <stdarg.h>
void debug_putch(char c);
void debug_putsn(char *s, size_t n);
void debug_puts(char *s);
void debug_vprintf(char *fmt, va_list args);
void debug_printf(char *fmt, ...);