update 1.3

This commit is contained in:
ada-dmitry
2023-12-01 01:08:58 +03:00
parent 8bbd79d0b0
commit 16c60f25e0
6 changed files with 4 additions and 9 deletions
+2 -3
View File
@@ -1,6 +1,5 @@
#include <stdio.h>
#include <stdlib.h>
#include <signal.h>
#include <unistd.h>
#include <math.h>
#include <termios.h>
@@ -41,10 +40,10 @@ void choose_path()
tcgetattr(0, &term);
// Отключение символа ECHO
// term.c_lflag &= ~ECHO;
term.c_lflag &= ~ECHO;
// Применение новых настроек терминала
// tcsetattr(0, TCSANOW, &term);
tcsetattr(0, TCSANOW, &term);
printf("\nПродолжить поиск корня?\n");
__fpurge(stdin);