eive-obsw/bsp_q7s/boardconfig/print.c

11 lines
210 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) {
2022-01-18 11:41:19 +01:00
if (errStream) {
putc(*character, stderr);
return;
}
putc(*character, stdout);
2020-09-16 16:22:36 +02:00
}