eive-obsw/bsp_te0720_1cfa/boardconfig/print.c

11 lines
218 B
C
Raw Normal View History

#include <bsp_te0720_1cfa/boardconfig/print.h>
#include <stdio.h>
void printChar(const char* character, bool errStream) {
if (errStream) {
putc(*character, stderr);
return;
}
putc(*character, stdout);
}