mirror of
https://github.com/tio/tio.git
synced 2026-05-01 14:57:59 +02:00
Cleanup stdout flushing
Flushing is not needed since we disabled buffering of stdout.
This commit is contained in:
parent
4c611e6767
commit
a0f3f9d9b7
4 changed files with 1 additions and 11 deletions
|
|
@ -30,14 +30,11 @@ char ansi_format[30];
|
|||
void print_hex(char c)
|
||||
{
|
||||
printf("%02x ", (unsigned char) c);
|
||||
|
||||
fflush(stdout);
|
||||
}
|
||||
|
||||
void print_normal(char c)
|
||||
{
|
||||
putchar(c);
|
||||
fflush(stdout);
|
||||
}
|
||||
|
||||
void print_init_ansi_formatting()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue