25 lines
No EOL
1.1 KiB
C
25 lines
No EOL
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* 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 |