/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_defs.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: bchanot +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2018/10/05 22:22:34 by bchanot #+# #+# */ /* Updated: 2018/10/22 02:46:35 by bchanot ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef FT_DEFS_H # define FT_DEFS_H # include # define NO_FLAGS 0 typedef unsigned char t_uint8; typedef unsigned short t_uint16; typedef unsigned int t_uint32; typedef unsigned long long t_uint64; typedef char t_int8; typedef short t_int16; typedef int t_int32; typedef long long t_int64; typedef struct s_gnl { char *tmp; int fd; int eof; struct s_gnl *next; } t_gnl; typedef enum e_bool { false, true } t_bool; #endif