-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlsit_struct.h
More file actions
22 lines (20 loc) · 1.03 KB
/
Copy pathlsit_struct.h
File metadata and controls
22 lines (20 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* lsit_struct.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jperpct <jperpect@student.42porto.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/03/14 22:29:39 by jperpct #+# #+# */
/* Updated: 2025/03/14 22:30:26 by jperpct ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef LSIT_STRUCT_H
# define LSIT_STRUCT_H
typedef struct s_list_
{
void *content;
struct s_list_ *next;
struct s_list_ *previous;
} t_list_;
#endif