Absorb Libft into minishell for 42 evaluation 42
authorLukas Jiriste <ljiriste@student.42prague.com>
Sun, 1 Sep 2024 13:25:48 +0000 (15:25 +0200)
committerLukas Jiriste <ljiriste@student.42prague.com>
Sun, 1 Sep 2024 13:40:51 +0000 (15:40 +0200)
commit0966771e5eff155eff67b8afb558f4a204384fb9
treea75414d1c4990356a790cccac0f31123c252ef9f
parent726cc9bbac524d6e3ed8775721ea6c4192af4685
Absorb Libft into minishell for 42 evaluation
137 files changed:
.gitmodules [deleted file]
Libft [deleted submodule]
Libft/Makefile [new file with mode: 0644]
Libft/ft_arr/ft_mat_access.c [new file with mode: 0644]
Libft/ft_arr/ft_mat_append.c [new file with mode: 0644]
Libft/ft_arr/ft_mat_fill.c [new file with mode: 0644]
Libft/ft_arr/ft_mat_free.c [new file with mode: 0644]
Libft/ft_arr/ft_mat_init.c [new file with mode: 0644]
Libft/ft_arr/ft_mat_insert_col.c [new file with mode: 0644]
Libft/ft_arr/ft_mat_insert_row.c [new file with mode: 0644]
Libft/ft_arr/ft_mat_zeros.c [new file with mode: 0644]
Libft/ft_arr/ft_vec_access.c [new file with mode: 0644]
Libft/ft_arr/ft_vec_append.c [new file with mode: 0644]
Libft/ft_arr/ft_vec_contains.c [new file with mode: 0644]
Libft/ft_arr/ft_vec_copy.c [new file with mode: 0644]
Libft/ft_arr/ft_vec_enlarge.c [new file with mode: 0644]
Libft/ft_arr/ft_vec_erase.c [new file with mode: 0644]
Libft/ft_arr/ft_vec_find.c [new file with mode: 0644]
Libft/ft_arr/ft_vec_find_index.c [new file with mode: 0644]
Libft/ft_arr/ft_vec_forget.c [new file with mode: 0644]
Libft/ft_arr/ft_vec_free.c [new file with mode: 0644]
Libft/ft_arr/ft_vec_init.c [new file with mode: 0644]
Libft/ft_arr/ft_vec_insert.c [new file with mode: 0644]
Libft/ft_arr/ft_vec_is_equal.c [new file with mode: 0644]
Libft/ft_arr/ft_vec_is_setequal.c [new file with mode: 0644]
Libft/ft_arr/ft_vec_is_subset.c [new file with mode: 0644]
Libft/ft_arr/ft_vec_reserve.c [new file with mode: 0644]
Libft/ft_arr/ft_vec_setinsert.c [new file with mode: 0644]
Libft/ft_check/ft_isalnum.c [new file with mode: 0644]
Libft/ft_check/ft_isalpha.c [new file with mode: 0644]
Libft/ft_check/ft_isascii.c [new file with mode: 0644]
Libft/ft_check/ft_isdigit.c [new file with mode: 0644]
Libft/ft_check/ft_isint.c [new file with mode: 0644]
Libft/ft_check/ft_islower.c [new file with mode: 0644]
Libft/ft_check/ft_isprint.c [new file with mode: 0644]
Libft/ft_check/ft_isspace.c [new file with mode: 0644]
Libft/ft_check/ft_isupper.c [new file with mode: 0644]
Libft/ft_conv/ft_atoi.c [new file with mode: 0644]
Libft/ft_conv/ft_ctoa.c [new file with mode: 0644]
Libft/ft_conv/ft_itoa.c [new file with mode: 0644]
Libft/ft_conv/ft_itoa_base.c [new file with mode: 0644]
Libft/ft_conv/ft_tolower.c [new file with mode: 0644]
Libft/ft_conv/ft_toupper.c [new file with mode: 0644]
Libft/ft_conv/ft_uitoa_base.c [new file with mode: 0644]
Libft/ft_gen/ft_swap.c [new file with mode: 0644]
Libft/ft_io/ft_printf/conversion.c [new file with mode: 0644]
Libft/ft_io/ft_printf/formatting.c [new file with mode: 0644]
Libft/ft_io/ft_printf/ft_printf.c [new file with mode: 0644]
Libft/ft_io/ft_printf/ft_printf.h [new file with mode: 0644]
Libft/ft_io/ft_printf/padding.c [new file with mode: 0644]
Libft/ft_io/ft_printf/parsing.c [new file with mode: 0644]
Libft/ft_io/ft_putchar_fd.c [new file with mode: 0644]
Libft/ft_io/ft_putendl_fd.c [new file with mode: 0644]
Libft/ft_io/ft_putnbr_fd.c [new file with mode: 0644]
Libft/ft_io/ft_putstr_fd.c [new file with mode: 0644]
Libft/ft_io/get_next_line.c [new file with mode: 0644]
Libft/ft_io/get_next_line.h [new file with mode: 0644]
Libft/ft_lst/ft_lst_at.c [new file with mode: 0644]
Libft/ft_lst/ft_lst_find.c [new file with mode: 0644]
Libft/ft_lst/ft_lst_foreach_if.c [new file with mode: 0644]
Libft/ft_lst/ft_lst_merge.c [new file with mode: 0644]
Libft/ft_lst/ft_lst_remove_if.c [new file with mode: 0644]
Libft/ft_lst/ft_lst_reverse.c [new file with mode: 0644]
Libft/ft_lst/ft_lst_sort.c [new file with mode: 0644]
Libft/ft_lst/ft_lst_sorted_insert.c [new file with mode: 0644]
Libft/ft_lst/ft_lst_sorted_merge.c [new file with mode: 0644]
Libft/ft_lst/ft_lstadd_back.c [new file with mode: 0644]
Libft/ft_lst/ft_lstadd_front.c [new file with mode: 0644]
Libft/ft_lst/ft_lstclear.c [new file with mode: 0644]
Libft/ft_lst/ft_lstdelone.c [new file with mode: 0644]
Libft/ft_lst/ft_lstiter.c [new file with mode: 0644]
Libft/ft_lst/ft_lstlast.c [new file with mode: 0644]
Libft/ft_lst/ft_lstmap.c [new file with mode: 0644]
Libft/ft_lst/ft_lstnew.c [new file with mode: 0644]
Libft/ft_lst/ft_lstsize.c [new file with mode: 0644]
Libft/ft_math/ft_abs.c [new file with mode: 0644]
Libft/ft_math/ft_max.c [new file with mode: 0644]
Libft/ft_math/ft_min.c [new file with mode: 0644]
Libft/ft_math/ft_sgn.c [new file with mode: 0644]
Libft/ft_mem/ft_bzero.c [new file with mode: 0644]
Libft/ft_mem/ft_calloc.c [new file with mode: 0644]
Libft/ft_mem/ft_memchr.c [new file with mode: 0644]
Libft/ft_mem/ft_memcmp.c [new file with mode: 0644]
Libft/ft_mem/ft_memcpy.c [new file with mode: 0644]
Libft/ft_mem/ft_memmove.c [new file with mode: 0644]
Libft/ft_mem/ft_memset.c [new file with mode: 0644]
Libft/ft_parse/actions.c [new file with mode: 0644]
Libft/ft_parse/add_line.c [new file with mode: 0644]
Libft/ft_parse/ft_parse.c [new file with mode: 0644]
Libft/ft_parse/ft_parse_inner.h [new file with mode: 0644]
Libft/ft_parse/ft_parse_tree_free.c [new file with mode: 0644]
Libft/ft_parse/ft_parse_tree_print.c [new file with mode: 0644]
Libft/ft_parse/ft_parsing_table_free.c [new file with mode: 0644]
Libft/ft_parse/ft_parsing_table_init.c [new file with mode: 0644]
Libft/ft_parse/ft_parsing_table_load.c [new file with mode: 0644]
Libft/ft_parse/ft_parsing_table_load_helpers.c [new file with mode: 0644]
Libft/ft_parse/ft_parsing_table_print.c [new file with mode: 0644]
Libft/ft_parse/helpers.c [new file with mode: 0644]
Libft/ft_parse/load_rules.c [new file with mode: 0644]
Libft/ft_str/ft_remove_space.c [new file with mode: 0644]
Libft/ft_str/ft_split.c [new file with mode: 0644]
Libft/ft_str/ft_strcat_alloc.c [new file with mode: 0644]
Libft/ft_str/ft_strchr.c [new file with mode: 0644]
Libft/ft_str/ft_strcmp.c [new file with mode: 0644]
Libft/ft_str/ft_strdup.c [new file with mode: 0644]
Libft/ft_str/ft_striteri.c [new file with mode: 0644]
Libft/ft_str/ft_strjoin.c [new file with mode: 0644]
Libft/ft_str/ft_strlcat.c [new file with mode: 0644]
Libft/ft_str/ft_strlcpy.c [new file with mode: 0644]
Libft/ft_str/ft_strlen.c [new file with mode: 0644]
Libft/ft_str/ft_strmapi.c [new file with mode: 0644]
Libft/ft_str/ft_strncat_alloc.c [new file with mode: 0644]
Libft/ft_str/ft_strncmp.c [new file with mode: 0644]
Libft/ft_str/ft_strndup.c [new file with mode: 0644]
Libft/ft_str/ft_strnstr.c [new file with mode: 0644]
Libft/ft_str/ft_strrchr.c [new file with mode: 0644]
Libft/ft_str/ft_strtrim.c [new file with mode: 0644]
Libft/ft_str/ft_substr.c [new file with mode: 0644]
Libft/ft_struct/ft_stack_free.c [new file with mode: 0644]
Libft/ft_struct/ft_stack_init.c [new file with mode: 0644]
Libft/ft_struct/ft_stack_pop.c [new file with mode: 0644]
Libft/ft_struct/ft_stack_pop_forget.c [new file with mode: 0644]
Libft/ft_struct/ft_stack_push.c [new file with mode: 0644]
Libft/ft_struct/ft_stack_top.c [new file with mode: 0644]
Libft/inc/ft_arr.h [new file with mode: 0644]
Libft/inc/ft_check.h [new file with mode: 0644]
Libft/inc/ft_conv.h [new file with mode: 0644]
Libft/inc/ft_gen.h [new file with mode: 0644]
Libft/inc/ft_io.h [new file with mode: 0644]
Libft/inc/ft_lst.h [new file with mode: 0644]
Libft/inc/ft_math.h [new file with mode: 0644]
Libft/inc/ft_mem.h [new file with mode: 0644]
Libft/inc/ft_parse.h [new file with mode: 0644]
Libft/inc/ft_stat.h [new file with mode: 0644]
Libft/inc/ft_str.h [new file with mode: 0644]
Libft/inc/ft_struct.h [new file with mode: 0644]
Libft/inc/libft.h [new file with mode: 0644]