aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChristopher Uhlig2025-01-23 18:41:18 +0100
committerChristopher Uhlig2025-01-23 18:41:18 +0100
commit18fb7cb8ae69fc3439266a154aa6b0f947d6805d (patch)
tree2cbdd7ab727d82cb69ea7acc431e2ffcc317e4ff /include
parent202a5a26d1c0411c441cf12be2b22318abc4f3f9 (diff)
downloadminishell-18fb7cb8ae69fc3439266a154aa6b0f947d6805d.tar.gz
minishell-18fb7cb8ae69fc3439266a154aa6b0f947d6805d.zip
a
Diffstat (limited to 'include')
-rw-r--r--include/debug_tools.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/debug_tools.h b/include/debug_tools.h
index 3f3dd26..9a24875 100644
--- a/include/debug_tools.h
+++ b/include/debug_tools.h
@@ -6,7 +6,7 @@
/* By: chuhlig <chuhlig@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/06/24 18:34:37 by dkaiser #+# #+# */
-/* Updated: 2025/01/20 19:38:02 by dkaiser ### ########.fr */
+/* Updated: 2025/01/23 15:22:14 by chuhlig ### ########.fr */
/* */
/* ************************************************************************** */
@@ -14,6 +14,7 @@
# define DEBUG_TOOLS_H
# include "libft.h"
# include <stdarg.h>
+# include "token.h"
# ifndef DEBUG
# define DEBUG 0
@@ -22,5 +23,6 @@
void dbg(char *str);
void panic(char *msg);
+void print_token_list(t_token *token_list);
#endif