/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_list_push_front.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: jhalford +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2016/08/14 13:14:11 by jhalford #+# #+# */ /* Updated: 2016/08/16 23:05:47 by jhalford ### ########.fr */ /* */ /* ************************************************************************** */ #include "ft_list.h" void ft_list_push_front(t_list **begin_list, void *data) { t_list *list; list = ft_create_elem(data); list->next = *begin_list; *begin_list = list; }