/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* u_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 U_INIT_H #define U_INIT_H #include typedef struct s_caps { struct termios tios; char *cm_str; /*cursor mobility*/ char *nl; /*newline, returned by tgoto()*/ char *ks; /*indicate that keys transmit from now on*/ char *ke; /*indicate that keys transmit from now on*/ char *kl; /*Key Left Key Right*/ char *kr; char *pc; /*padding char --> do not touch (default 0)*/ char *bc; /*left one char*/ char *le; /*left one char*/ char *up; /*up one line*/ char *DO; /*down one line*/ char *nd; /*right one char*/ char *cl; /*line clear*/ } t_caps; int16_t c_init_tcaps(void); #endif