-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstruct.h
23 lines (20 loc) · 1.01 KB
/
struct.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* struct.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cyfermie <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/11/07 16:27:43 by cyfermie #+# #+# */
/* Updated: 2017/11/07 16:27:46 by cyfermie ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef STRUCT_H
# define STRUCT_H
typedef struct s_list
{
void *content;
size_t content_size;
struct s_list *next;
} t_list;
#endif