/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_list.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: jhalford +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2016/08/14 11:53:17 by jhalford #+# #+# */ /* Updated: 2016/08/16 23:05:29 by jhalford ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef FT_LIST_H # define FT_LIST_H typedef struct s_list { struct s_list *next; void *data; } t_list; #endif