15 lines
186 B
C
15 lines
186 B
C
|
#include "print.h"
|
||
|
#include <stdio.h>
|
||
|
|
||
|
void printChar(const char* character, bool errStream) {
|
||
|
if(errStream) {
|
||
|
putc(*character, stderr);
|
||
|
return;
|
||
|
}
|
||
|
putc(*character, stdout);
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|