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-17 15:58:27 +01:00
|
|
|
if (errStream) {
|
|
|
|
putc(*character, stderr);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
putc(*character, stdout);
|
2020-09-16 16:22:36 +02:00
|
|
|
}
|