summaryrefslogtreecommitdiffstats
path: root/libft/include/libft.h
diff options
context:
space:
mode:
Diffstat (limited to 'libft/include/libft.h')
-rw-r--r--libft/include/libft.h6
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
{