Made a memory allocator (crude)
This commit is contained in:
parent
b5c7344851
commit
941bac31b6
53 changed files with 469 additions and 146 deletions
19
stdme/src/mem/mem_realloc.c
Normal file
19
stdme/src/mem/mem_realloc.c
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* mem_realloc.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2024/05/07 12:46:18 by maiboyer #+# #+# */
|
||||
/* Updated: 2024/05/07 12:47:12 by maiboyer ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "me/mem/mem_realloc.h"
|
||||
#include "me/alloc/alloc.h"
|
||||
|
||||
void *mem_realloc(void *ptr, t_usize size)
|
||||
{
|
||||
return (me_realloc(ptr, size));
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue