diff options
| author | Christopher Uhlig | 2025-01-20 13:06:34 +0100 |
|---|---|---|
| committer | Christopher Uhlig | 2025-01-20 13:06:34 +0100 |
| commit | 8f5abcdb257393a2e576fe382835e8e060662834 (patch) | |
| tree | 1b923423b22bb59ff10ea07b0700a5a7bdf96f5a /include/debug_tools.h | |
| parent | 3392f2b811269f174620832d663b09ef4f4e43f3 (diff) | |
| download | minishell-8f5abcdb257393a2e576fe382835e8e060662834.tar.gz minishell-8f5abcdb257393a2e576fe382835e8e060662834.zip | |
merged
Diffstat (limited to 'include/debug_tools.h')
| -rw-r--r-- | include/debug_tools.h | 11 |
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 |
