minishell
libft.h
Go to the documentation of this file.
1 /* ************************************************************************** */
2 /* */
3 /* ::: :::::::: */
4 /* libft.h :+: :+: :+: */
5 /* +:+ +:+ +:+ */
6 /* By: kfujita <kfujita@student.42tokyo.jp> +#+ +:+ +#+ */
7 /* +#+#+#+#+#+ +#+ */
8 /* Created: 2022/04/10 13:37:46 by kfujita #+# #+# */
9 /* Updated: 2023/02/06 18:16:33 by kfujita ### ########.fr */
10 /* */
11 /* ************************************************************************** */
12 
13 #ifndef LIBFT_H
14 # define LIBFT_H
15 
16 // Dependency:
17 // ft_is*
18 # include "ft_is/ft_is.h"
19 
20 // lst
21 # include "ft_lst/ft_lst.h"
22 
23 # include "ft_math/ft_math.h"
24 
25 // memory
26 # include "ft_mem/ft_mem.h"
27 
28 // printf
29 # include "ft_printf/ft_printf.h"
30 
31 // ft_put*
32 # include "ft_put/ft_put.h"
33 
34 // string
35 # include "ft_string/ft_string.h"
36 
37 // ft_to*
38 # include "ft_to/ft_to.h"
39 
40 // Get Next Line
41 # include "gnl/get_next_line.h"
42 
43 #endif