obsw/common/printChar.c
2023-09-11 18:12:52 +02:00

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);
}
}