42_libasm/headers/list.h

7 lines
88 B
C

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