/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* c_init.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: rbousset +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/14 17:19:27 by rbousset #+# #+# */ /* Updated: 2020/02/14 17:19:29 by rbousset ### ########lyon.fr */ /* */ /* ************************************************************************** */ #ifndef C_INIT_H # define C_INIT_H # include # include # include "s_struct.h" # define LEFT_K 0x445b1b # define RIGHT_K 0x435b1b # define HOME_K 0x485b1b # define END_K 0x7e345b1b # define DEL_K 0x7f # define RET_K 0x0d # define CTRL_A 0x01 # define CTRL_B 0x02 # define CTRL_C 0x03 # define CTRL_D 0x04 # define CTRL_E 0x05 # define CTRL_F 0x06 # define CTRL_L 0x0c typedef struct s_caps { struct termios tios; struct winsize ws; uint32_t cpos; uint32_t lpos; uint32_t nlines; uint8_t psx; } t_caps; int16_t c_gnl(int32_t fd, char **line, uint8_t psx, t_msh *msh); int16_t c_set_term_raw(uint8_t mode); #endif