updated OBSW code

This commit is contained in:
2022-03-01 13:34:12 +01:00
parent b279434ef0
commit 4a5ad4fb4d
16 changed files with 766 additions and 114 deletions

View File

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