hosted build working

This commit is contained in:
2020-09-30 20:52:51 +02:00
parent 6712c42803
commit 09468f2a25
19 changed files with 673 additions and 7 deletions

View File

@ -0,0 +1,14 @@
#include "print.h"
#include <stdio.h>
void printChar(const char* character, bool errStream) {
if(errStream) {
putc(*character, stderr);
return;
}
putc(*character, stdout);
}