eive-obsw/hosted/boardconfig/print.c

15 lines
186 B
C
Raw Normal View History

2020-09-30 20:52:51 +02:00
#include "print.h"
#include <stdio.h>
void printChar(const char* character, bool errStream) {
if(errStream) {
putc(*character, stderr);
return;
}
putc(*character, stdout);
}