add MALLOC_DEBUG_LEVEL environment variable support
This commit is contained in:
@ -6,7 +6,7 @@
|
||||
/* By: tomoron <marvin@42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/10/30 16:55:48 by tomoron #+# #+# */
|
||||
/* Updated: 2024/11/30 11:34:40 by tomoron ### ########.fr */
|
||||
/* Updated: 2024/12/09 17:45:01 by tomoron ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
@ -15,7 +15,7 @@
|
||||
# include <stddef.h>
|
||||
# include <stdlib.h>
|
||||
# include <unistd.h>
|
||||
# include "./ft_printf.h"
|
||||
# include "../../libft/ft_printf/ft_printf.h"
|
||||
|
||||
typedef struct s_list
|
||||
{
|
||||
@ -45,6 +45,7 @@ void ft_lstadd_front(t_list **lst, t_list *new);
|
||||
char **ft_split(char const *str, char charset);
|
||||
void ft_lstadd_back(t_list **lst, t_list *new);
|
||||
char **ft_split_set(char *str, char *charset);
|
||||
void ft_putulnbr_fd(unsigned long n, int fd);
|
||||
int ft_str_is_only_char(char *str, char c);
|
||||
void *ft_memset(void *s, int c, size_t n);
|
||||
char *ft_get_color(int r, int g, int b);
|
||||
|
Reference in New Issue
Block a user