11 lines
224 B
C
11 lines
224 B
C
|
#include <stdio.h>
|
||
|
#include <stdbool.h>
|
||
|
|
||
|
void __attribute__((weak)) printChar(const char* character, bool errStream) {
|
||
|
if (errStream) {
|
||
|
fprintf(stderr, "%c", *character);
|
||
|
} else {
|
||
|
printf("%c", *character);
|
||
|
}
|
||
|
}
|