20 lines
997 B
C
20 lines
997 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* mem_alloc.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/12/06 14:47:49 by maiboyer #+# #+# */
|
|
/* Updated: 2023/12/09 16:41:31 by maiboyer ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef MEM_ALLOC_H
|
|
# define MEM_ALLOC_H
|
|
|
|
# include "me/types.h"
|
|
|
|
void *mem_alloc(t_usize size);
|
|
|
|
#endif
|