42_libasm/include/list.h
2024-09-05 13:15:14 +02:00

7 lines
88 B
C

#pragma once
typedef struct s_list
{
void *data;
struct s_list *next;
} t_list;