fsfw-example-hosted/bsp_hosted/utility/printChar.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);
}
}