24 lines
1 KiB
C
24 lines
1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_btree.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: jhalford <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2016/08/16 13:40:06 by jhalford #+# #+# */
|
|
/* Updated: 2016/08/21 20:36:59 by jhalford ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef FT_BTREE_H
|
|
# define FT_BTREE_H
|
|
|
|
extern int g_level;
|
|
typedef struct s_btree
|
|
{
|
|
struct s_btree *left;
|
|
struct s_btree *right;
|
|
void *item;
|
|
} t_btree;
|
|
|
|
#endif
|