/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_malloc_public.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: thrieg < thrieg@student.42mulhouse.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/11/25 12:31:43 by thrieg #+# #+# */ /* Updated: 2025/11/28 18:26:47 by thrieg ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef FT_MALLOC_PUBLIC_H #define FT_MALLOC_PUBLIC_H #include #include void *malloc(size_t size); void free(void *ptr); void *calloc(size_t nmemb, size_t size); void *realloc(void *ptr, size_t size); void show_alloc_mem_ex(bool hexdump_free_zones); #endif