aboutsummaryrefslogtreecommitdiff
path: root/include/minishell.h
diff options
context:
space:
mode:
authorDominik Kaiser2024-06-25 13:03:28 +0200
committerGitHub2024-06-25 13:03:28 +0200
commit0d7a57a7bc14831d6d7076ccb0ea7a7213ddd7fb (patch)
treeb32a1e9f885ec813cd8b729c05db2ba2a68f9475 /include/minishell.h
parent1d8f996fe098b7399669174b67d2fa6341bea8d7 (diff)
downloadminishell-0d7a57a7bc14831d6d7076ccb0ea7a7213ddd7fb.tar.gz
minishell-0d7a57a7bc14831d6d7076ccb0ea7a7213ddd7fb.zip
Add debug tools
* Add dbg() function and debug make rule * Add panic() debug function
Diffstat (limited to 'include/minishell.h')
-rw-r--r--include/minishell.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/minishell.h b/include/minishell.h
index 7408dd6..9ebc58f 100644
--- a/include/minishell.h
+++ b/include/minishell.h
@@ -6,10 +6,14 @@
/* By: dkaiser <dkaiser@student.42heilbronn.de +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/06/22 17:14:49 by dkaiser #+# #+# */
-/* Updated: 2024/06/22 17:16:15 by dkaiser ### ########.fr */
+/* Updated: 2024/06/24 18:51:30 by dkaiser ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef MINISHELL_H
# define MINISHELL_H
+
+# include "debug_tools.h"
+# include "libft.h"
+
#endif