eive-obsw/unittest/printChar.cpp
Ulrich Mohr f1249392cf
Some checks failed
EIVE/eive-obsw/pipeline/head There was a failure building this commit
skeleton controller now unittested including fsfw. Still dirty WIP
2022-02-10 18:54:09 +01:00

12 lines
204 B
C++

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