30 lines
1.2 KiB
C
30 lines
1.2 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* resize.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: gwojda <gwojda@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2017/03/14 10:56:08 by gwojda #+# #+# */
|
|
/* Updated: 2017/03/15 14:25:51 by gwojda ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "minishell.h"
|
|
|
|
void sigwinch_resize(int sig)
|
|
{
|
|
size_t pos_tmp;
|
|
|
|
pos_tmp = 0;
|
|
(void)sig;
|
|
if (data_singleton()->comp)
|
|
{
|
|
c_term_resize(data_singleton()->comp);
|
|
ft_puttermcaps("cl");
|
|
data_singleton()->line.is_prompt ? ft_prompt() : ft_putstr("> ");
|
|
ft_putall_current_str(STR, &pos_tmp);
|
|
ft_putnc('\b', pos_tmp - POS);
|
|
c_dispatcher(data_singleton());
|
|
}
|
|
}
|