copy on git

This commit is contained in:
Thomas Rieg 2025-11-28 19:50:58 +01:00
commit 42653de246
205 changed files with 7459 additions and 0 deletions

View file

@ -0,0 +1,25 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* 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 <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);
#endif