/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_btree.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: jhalford +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2016/08/16 13:40:06 by jhalford #+# #+# */ /* Updated: 2016/08/25 17:44:41 by jhalford ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef FT_BTREE_H # define FT_BTREE_H # include # define MAX(a,b) ((a > b) ? a : b) typedef struct s_btree { struct s_btree *left; struct s_btree *right; void *item; } t_btree; t_btree *btree_create_node(void *item); #endif