Libft
42 Libft library documentation
Loading...
Searching...
No Matches
types.h
Go to the documentation of this file.
1#pragma once
2
3typedef struct s_list
4{
5 void *content;
6 struct s_list *next;
Definition types.h:4
struct s_list * next
Definition types.h:6
void * content
Definition types.h:5
struct s_list t_list