diff options
Diffstat (limited to 'include/libft.h')
| -rw-r--r-- | include/libft.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/libft.h b/include/libft.h index 0880568..3777f8a 100644 --- a/include/libft.h +++ b/include/libft.h @@ -6,7 +6,7 @@ /* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/10/07 09:45:02 by cacharle #+# #+# */ -/* Updated: 2019/11/21 03:39:19 by cacharle ### ########.fr */ +/* Updated: 2020/01/15 10:03:22 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ @@ -27,6 +27,10 @@ # define MAX(x, y) ((x) > (y) ? (x) : (y)) typedef unsigned char t_byte; +typedef int t_bool; + +# define TRUE 1 +# define FALSE 0 /* ** memory |
