From 1e9b077e0d9f3c50d7d518bf6ea7f08e7f5ec590 Mon Sep 17 00:00:00 2001 From: Charles Date: Wed, 15 Jan 2020 10:04:09 +0100 Subject: splited src in category, more generic makefile --- include/libft.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'include/libft.h') 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 +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* 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 -- cgit