eive-obsw/bsp_linux_board/boardconfig/print.c

11 lines
218 B
C
Raw Normal View History

2022-02-05 13:19:20 +01:00
#include <bsp_linux_board/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
}