aboutsummaryrefslogtreecommitdiff
path: root/include/debug_tools.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/debug_tools.h')
-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