20 lines
1 KiB
C
20 lines
1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* mem_realloc.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/05/07 12:47:23 by maiboyer #+# #+# */
|
|
/* Updated: 2024/05/07 12:47:42 by maiboyer ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef MEM_REALLOC_H
|
|
#define MEM_REALLOC_H
|
|
|
|
#include "me/types.h"
|
|
|
|
void *mem_realloc(void *ptr, t_usize size);
|
|
|
|
#endif /* MEM_REALLOC_H */
|