18 lines
979 B
C
18 lines
979 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* top.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* 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);
|
|
}
|