blob: 4a7ff109419ae6423b2750d2cf1e84e3393c6396 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* debug_tools.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: dkaiser <dkaiser@student.42heilbronn.de +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/06/24 18:34:37 by dkaiser #+# #+# */
/* Updated: 2024/06/28 15:05:12 by dkaiser ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef DEBUG_TOOLS_H
# define DEBUG_TOOLS_H
# include "libft.h"
# ifndef DEBUG
# define DEBUG 0
# endif
# define UNREACHABLE "Unreachable."
void dbg(char *str);
void panic(char *msg);
#endif
|