diff options
Diffstat (limited to '')
-rw-r--r-- | src/c_init.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/c_init.h b/src/c_init.h index a41202d..dae8513 100644 --- a/src/c_init.h +++ b/src/c_init.h @@ -13,6 +13,7 @@ #ifndef C_INIT_H # define C_INIT_H +# include <libft.h> # include <termios.h> # include <sys/ioctl.h> @@ -34,6 +35,7 @@ # define CTRL_E 0x05 # define CTRL_F 0x06 # define CTRL_L 0x0c +# define CTRL_N 0x0e # define CTRL_P 0x10 typedef struct s_caps @@ -47,6 +49,7 @@ typedef struct s_caps unsigned short plen; } t_caps; +char *c_set_ptr(t_bool reset, char key, t_msh *msh); short c_gnl(int fd, char **line, char psx, t_msh *msh); short c_set_term_raw(char mode); |