ft_malloc/includes/ft_malloc_public.h

26 lines
No EOL
1.2 KiB
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_malloc_public.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: thrieg <thrieg@student.42mulhouse.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* 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 <stddef.h>
#include <stdbool.h>
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