deleted terminal.c

This commit is contained in:
LuckyLaszlo
2021-12-16 06:39:29 +01:00
parent e5852579ef
commit 59f0b7603b
4 changed files with 3 additions and 89 deletions

View File

@@ -6,7 +6,7 @@
/* By: lperrey <lperrey@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/10/08 02:59:58 by lperrey #+# #+# */
/* Updated: 2021/12/16 04:50:31 by lperrey ### ########.fr */
/* Updated: 2021/12/16 06:35:04 by lperrey ### ########.fr */
/* */
/* ************************************************************************** */
@@ -20,9 +20,6 @@ extern char **environ;
int init(t_all *c);
char *init_prompt(char *prompt_base);
char **retrieve_path(void);
int set_terminal_attributes(struct termios *ori_termios,
struct termios *interactive_termios,
int *termios_changed); // WIP, TEST, TEMP, PLACEHOLDER, NOT IMPORTANT, :)
void set_signals_behaviour(void);
// Shell modes

View File

@@ -6,7 +6,7 @@
/* By: lperrey <lperrey@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/10/08 02:35:52 by lperrey #+# #+# */
/* Updated: 2021/12/01 16:49:37 by lperrey ### ########.fr */
/* Updated: 2021/12/16 06:34:29 by lperrey ### ########.fr */
/* */
/* ************************************************************************** */
@@ -42,11 +42,6 @@ typedef struct s_all
char *prompt_base;
char *prompt;
t_token *token_list;
// struct termios ori_termios;
// struct termios interactive_termios;
// int termios_changed;
// struct sigaction ori_signal_behaviour;
// struct sigaction signal_behaviour;
} t_all;
#endif