42-archive/42-piscine-c/d13/ex08/rb_insert.c
2016-08-25 20:50:28 +02:00

19 lines
994 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* rb_insert.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jhalford <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/08/23 00:52:57 by jhalford #+# #+# */
/* Updated: 2016/08/23 19:09:40 by jhalford ### ########.fr */
/* */
/* ************************************************************************** */
void rb_insert(
struct s_rb_node **root,
void *data,
int (*cmpf)(void *, void *))
{
return ;
}