diff options
author | joe <rbousset@42lyon.fr> | 2020-12-04 17:32:50 +0100 |
---|---|---|
committer | joe <rbousset@42lyon.fr> | 2020-12-04 17:32:50 +0100 |
commit | 2e080e838d9f615e1e8c0f88b06823645de54fc6 (patch) | |
tree | 36e3461fa4f6f3f892af9852697b7da66261c841 /libft/include/libft.h | |
parent | in progress (diff) | |
download | 42-minishell-2e080e838d9f615e1e8c0f88b06823645de54fc6.tar.gz 42-minishell-2e080e838d9f615e1e8c0f88b06823645de54fc6.tar.bz2 42-minishell-2e080e838d9f615e1e8c0f88b06823645de54fc6.tar.xz 42-minishell-2e080e838d9f615e1e8c0f88b06823645de54fc6.tar.zst 42-minishell-2e080e838d9f615e1e8c0f88b06823645de54fc6.zip |
Good now
Diffstat (limited to 'libft/include/libft.h')
-rw-r--r-- | libft/include/libft.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libft/include/libft.h b/libft/include/libft.h index 265d87c..427f873 100644 --- a/libft/include/libft.h +++ b/libft/include/libft.h @@ -23,11 +23,13 @@ # define BUFFER_SIZE 72 # endif -typedef enum e_bool +typedef unsigned char t_bool; + +enum e_bool { FALSE, TRUE -} t_bool; +}; typedef struct s_list { |