aboutsummaryrefslogtreecommitdiff
path: root/include/debug_tools.h
diff options
context:
space:
mode:
authorDominik Kaiser2025-01-20 18:46:39 +0100
committerGitHub2025-01-20 18:46:39 +0100
commit9fa887da20e409c2f25fac44b57f999e508a30ea (patch)
tree7e3fee3edea18d0d81abddb89104858cfc0ec5e3 /include/debug_tools.h
parentaf9d1a9b39daaf1b86cf94ee629e06503d8ab6d4 (diff)
parent62845ce01f222fad126372c574c7ab084478adf0 (diff)
downloadminishell-9fa887da20e409c2f25fac44b57f999e508a30ea.tar.gz
minishell-9fa887da20e409c2f25fac44b57f999e508a30ea.zip
Merge pull request #30 from dpu-kaiser/merge_format_redir
Merge format redir
Diffstat (limited to 'include/debug_tools.h')
-rw-r--r--include/debug_tools.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/include/debug_tools.h b/include/debug_tools.h
index 4a7ff10..6c4bc29 100644
--- a/include/debug_tools.h
+++ b/include/debug_tools.h
@@ -3,15 +3,17 @@
/* ::: :::::::: */
/* debug_tools.h :+: :+: :+: */
/* +:+ +:+ +:+ */
-/* By: dkaiser <dkaiser@student.42heilbronn.de +#+ +:+ +#+ */
+/* By: chuhlig <chuhlig@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/06/24 18:34:37 by dkaiser #+# #+# */
-/* Updated: 2024/06/28 15:05:12 by dkaiser ### ########.fr */
+/* Updated: 2025/01/19 21:08:15 by chuhlig ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef DEBUG_TOOLS_H
# define DEBUG_TOOLS_H
+# include <stdarg.h>
+# include "debug_tools.h"
# include "libft.h"
@@ -22,4 +24,9 @@
void dbg(char *str);
void panic(char *msg);
+
+
+void dbg2(const char *format, ...);
+
+
#endif