eive-obsw/unittest/rebootLogic/src/print.c
Robin Mueller 9e03f9babe
Some checks failed
EIVE/eive-obsw/pipeline/pr-develop There was a failure building this commit
apply clang format to unittest folder as well
2022-03-01 15:06:59 +01:00

11 lines
192 B
C

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