22 lines
1,014 B
C
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/17 17:32:43 by jhalford ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef FT_LIST_H
|
|
# define FT_LIST_H
|
|
|
|
typedef struct s_list
|
|
{
|
|
struct s_list *next;
|
|
void *data;
|
|
} t_list;
|
|
|
|
#endif
|