added dual linked list
This commit is contained in:
14
libft.h
14
libft.h
@@ -6,7 +6,7 @@
|
||||
/* By: tmaze <tmaze@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2018/04/08 00:12:36 by tmaze #+# #+# */
|
||||
/* Updated: 2018/06/07 16:54:31 by tmaze ### ########.fr */
|
||||
/* Updated: 2018/09/30 17:04:54 by tmaze ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
@@ -28,6 +28,18 @@ typedef struct s_list
|
||||
struct s_list *next;
|
||||
} t_list;
|
||||
|
||||
/*
|
||||
** définition type t_list2
|
||||
*/
|
||||
|
||||
typedef struct s_list2
|
||||
{
|
||||
struct s_list2 *prev;
|
||||
void *content;
|
||||
size_t content_size;
|
||||
struct s_list2 *next;
|
||||
} t_list2;
|
||||
|
||||
/*
|
||||
** definition macro BUFF_SIZE
|
||||
*/
|
||||
|
Reference in New Issue
Block a user