/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* top.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: jhalford +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2017/03/24 20:04:27 by jhalford #+# #+# */ /* Updated: 2017/03/24 20:09:06 by jhalford ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" int top(t_list *top) { return (top ? *(int*)top->content : 0); }