mirror of
https://github.com/tio/tio.git
synced 2026-05-01 14:57:59 +02:00
Function names cleanup
This commit is contained in:
parent
0a1ed5e7bd
commit
1f45b8d91d
4 changed files with 58 additions and 58 deletions
|
|
@ -40,7 +40,7 @@ int main(int argc, char *argv[])
|
|||
parse_options(argc, argv);
|
||||
|
||||
/* Configure output terminal */
|
||||
configure_stdout();
|
||||
stdout_configure();
|
||||
|
||||
/* Install log exit handler */
|
||||
atexit(&log_exit);
|
||||
|
|
@ -51,14 +51,14 @@ int main(int argc, char *argv[])
|
|||
|
||||
/* Connect to tty device */
|
||||
if (option.no_autoconnect)
|
||||
status = connect_tty();
|
||||
status = tty_connect();
|
||||
else
|
||||
{
|
||||
/* Enter connect loop */
|
||||
while (true)
|
||||
{
|
||||
wait_for_tty_device();
|
||||
status = connect_tty();
|
||||
tty_wait_for_device();
|
||||
status = tty_connect();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue