Ulrich Mohr
f1249392cf
Some checks failed
EIVE/eive-obsw/pipeline/head There was a failure building this commit
12 lines
204 B
C++
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);
|
|
}
|