Robin Mueller
d2337a769c
All checks were successful
fsfw/fsfw example hosted/pipeline/head This commit looks good
11 lines
202 B
C
11 lines
202 B
C
#include <stdbool.h>
|
|
#include <stdio.h>
|
|
|
|
void printChar(const char* character, bool errStream) {
|
|
if (errStream) {
|
|
fprintf(stderr, "%c", *character);
|
|
} else {
|
|
printf("%c", *character);
|
|
}
|
|
}
|