diff options
Diffstat (limited to 'libft/include')
-rw-r--r-- | libft/include/libft.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libft/include/libft.h b/libft/include/libft.h index 5ddb471..6513693 100644 --- a/libft/include/libft.h +++ b/libft/include/libft.h @@ -24,6 +24,12 @@ # define BUFFER_SIZE 72 # endif +typedef enum +{ + FALSE, + TRUE +} t_bool; + typedef struct s_list { void *content; |