eive-obsw/bsp_rpi/boardconfig/print.c

15 lines
206 B
C
Raw Normal View History

2020-12-29 13:59:31 +01:00
#include <bsp_q7s/boardconfig/print.h>
2020-09-16 16:22:36 +02:00
#include <stdio.h>
void printChar(const char* character, bool errStream) {
if(errStream) {
putc(*character, stderr);
return;
}
putc(*character, stdout);
}