diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-01-15 10:04:09 +0100 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-01-15 10:04:09 +0100 |
| commit | 1e9b077e0d9f3c50d7d518bf6ea7f08e7f5ec590 (patch) | |
| tree | 21d906cd9f96c58af572ce3bb6784d1d8fca18d2 /include | |
| parent | 49ad59b0e773e92e93fb69ede889c781ca53e680 (diff) | |
| download | libft-1e9b077e0d9f3c50d7d518bf6ea7f08e7f5ec590.tar.gz libft-1e9b077e0d9f3c50d7d518bf6ea7f08e7f5ec590.tar.bz2 libft-1e9b077e0d9f3c50d7d518bf6ea7f08e7f5ec590.zip | |
splited src in category, more generic makefile
Diffstat (limited to 'include')
| -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 |
