/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* debug.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: qmennen +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/02/18 20:06:53 by qmennen #+# #+# */ /* Updated: 2025/02/18 20:10:49 by qmennen ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef DEBUG_H # define DEBUG_H # include "minishell.h" void print_commands(void *param); void token_print(void *param); void print_redirects(void *param); void print_freelist(t_minishell *msh); #endif