42-archive/42-piscine-c/d11/ex17/ft_list.h
2016-08-25 20:50:28 +02:00

22 lines
1,014 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_list.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jhalford <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/08/14 11:53:17 by jhalford #+# #+# */
/* Updated: 2016/08/16 18:45:37 by jhalford ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_LIST_H
# define FT_LIST_H
typedef struct s_list
{
struct s_list *next;
void *data;
} t_list;
#endif