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

23 lines
1 KiB
C

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