11 lines
210 B
C
11 lines
210 B
C
#include <bsp_q7s/boardconfig/print.h>
|
|
#include <stdio.h>
|
|
|
|
void printChar(const char* character, bool errStream) {
|
|
if (errStream) {
|
|
putc(*character, stderr);
|
|
return;
|
|
}
|
|
putc(*character, stdout);
|
|
}
|