/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_malloc_public.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: thrieg +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/11/25 12:31:43 by thrieg #+# #+# */ /* Updated: 2025/12/13 05:34:43 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); void show_alloc_mem(); #endif