7 lines
88 B
C
7 lines
88 B
C
#pragma once
|
|
|
|
typedef struct s_list
|
|
{
|
|
void *data;
|
|
struct s_list *next;
|
|
} t_list; |