/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_btree.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: jhalford +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2016/08/16 13:40:06 by jhalford #+# #+# */ /* Updated: 2016/08/19 23:32:07 by jhalford ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef FT_BTREE_H # define FT_BTREE_H # include typedef struct s_btree { struct s_btree *left; struct s_btree *right; void *item; } t_btree; #endif