Enforce header inclusion rules
authorLukas Jiriste <ljiriste@student.42prague.com>
Sat, 9 Dec 2023 14:56:42 +0000 (15:56 +0100)
committerLukas Jiriste <ljiriste@student.42prague.com>
Sat, 9 Dec 2023 14:56:42 +0000 (15:56 +0100)
commit9ec2c05a0b6f64c46a8ee73412dfb533b39ccb1e
treea5caca409c5cab20b939108d5455c78f77d66782
parentc78342129ab34e3ba610cefc0631f8b905fa92b8
Enforce header inclusion rules

The following rules are (to be) used:
 -Sort header inclusion from local to global
 -Always include header which declares the functions in file
 -Only include header when it is neccesary for compilation
68 files changed:
ft_check/ft_isalnum.c
ft_check/ft_isalpha.c
ft_check/ft_isascii.c
ft_check/ft_isdigit.c
ft_check/ft_islower.c
ft_check/ft_isprint.c
ft_check/ft_isspace.c
ft_check/ft_isupper.c
ft_conv/ft_atoi.c
ft_conv/ft_ctoa.c
ft_conv/ft_itoa.c
ft_conv/ft_itoa_base.c
ft_conv/ft_tolower.c
ft_conv/ft_toupper.c
ft_conv/ft_uitoa_base.c
ft_gen/ft_swap.c
ft_io/ft_printf/conversion.c
ft_io/ft_printf/formatting.c
ft_io/ft_printf/ft_printf.c
ft_io/ft_printf/padding.c
ft_io/ft_printf/parsing.c
ft_io/ft_putchar_fd.c
ft_io/ft_putendl_fd.c
ft_io/ft_putnbr_fd.c
ft_io/ft_putstr_fd.c
ft_io/get_next_line.c
ft_lst/ft_lst_at.c
ft_lst/ft_lst_find.c
ft_lst/ft_lst_foreach_if.c
ft_lst/ft_lst_merge.c
ft_lst/ft_lst_remove_if.c
ft_lst/ft_lst_reverse.c
ft_lst/ft_lst_sort.c
ft_lst/ft_lst_sorted_insert.c
ft_lst/ft_lst_sorted_merge.c
ft_lst/ft_lstadd_back.c
ft_lst/ft_lstadd_front.c
ft_lst/ft_lstclear.c
ft_lst/ft_lstdelone.c
ft_lst/ft_lstiter.c
ft_lst/ft_lstlast.c
ft_lst/ft_lstmap.c
ft_lst/ft_lstnew.c
ft_lst/ft_lstsize.c
ft_math/ft_abs.c
ft_mem/ft_bzero.c
ft_mem/ft_calloc.c
ft_mem/ft_memchr.c
ft_mem/ft_memcmp.c
ft_mem/ft_memcpy.c
ft_mem/ft_memmove.c
ft_mem/ft_memset.c
ft_str/ft_split.c
ft_str/ft_strchr.c
ft_str/ft_strdup.c
ft_str/ft_striteri.c
ft_str/ft_strjoin.c
ft_str/ft_strlcat.c
ft_str/ft_strlcpy.c
ft_str/ft_strlen.c
ft_str/ft_strmapi.c
ft_str/ft_strncat_alloc.c
ft_str/ft_strncmp.c
ft_str/ft_strndup.c
ft_str/ft_strnstr.c
ft_str/ft_strrchr.c
ft_str/ft_strtrim.c
ft_str/ft_substr.c