42_libasm/include/list.h

7 lines
88 B
C
Raw Normal View History

2024-09-05 07:15:14 -04:00
#pragma once
typedef struct s_list
{
void *data;
struct s_list *next;
} t_list;