-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgc.h
28 lines (23 loc) · 1.07 KB
/
gc.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* gc.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: sait-alo <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/05/11 16:30:16 by sait-alo #+# #+# */
/* Updated: 2024/05/11 16:30:23 by sait-alo ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef GC_H
# define GC_H
# include <stdlib.h>
# define ALLOC 'A'
# define FREE 'F'
typedef struct s_gc
{
void *ptr;
struct s_gc *next;
} t_gc;
void *m_alloc(size_t __size, char todo);
#endif