mirror of
1
0
Fork 0

Removed some whitespace

This commit is contained in:
Tristan B. Kildaire 2020-05-05 21:26:42 +02:00
parent 2f2a0e4aaa
commit aa2aa107b8
1 changed files with 1 additions and 7 deletions

View File

@ -76,8 +76,6 @@ void redraw(struct Session* session)
output(seq, 3);
i++;
}
}
void newEditor(struct Session* session)
@ -88,7 +86,7 @@ void newEditor(struct Session* session)
/* Output the file as of now */
redraw(session);
//output("hello world", strlen("hello world"));
//output("hello world", strlen("hello world"));
while(session->isActive)
{
char s;
@ -188,16 +186,12 @@ void newEditor(struct Session* session)
// output(l, strlen(l));
// output(&s, 1);
/* Redraw */
redraw(session);
}
char* bye = "\nBye mate!\n";
output(bye, strlen(bye));
/* Restore tty settings */
stopTTY();