From 783260a4c01ebfe4b4bcfc56d57a4d99603f904f Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Sun, 11 Oct 2020 14:05:28 +0200 Subject: Norming and removing ft_printf,heapsort --- include/libft_vec.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'include/libft_vec.h') diff --git a/include/libft_vec.h b/include/libft_vec.h index c63c128..287ce6f 100644 --- a/include/libft_vec.h +++ b/include/libft_vec.h @@ -6,7 +6,7 @@ /* By: charles +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/04/01 18:57:16 by charles #+# #+# */ -/* Updated: 2020/08/19 17:49:03 by charles ### ########.fr */ +/* Updated: 2020/10/11 14:04:43 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ @@ -54,6 +54,7 @@ t_ftvec *ft_vecinsert_safe(t_ftvec *vec, size_t i, void *elem); void ft_vecsort(t_ftvec *vec, t_ftcompar_func cmp); void **ft_vecunwrap(t_ftvec *vec); t_ftvec *ft_vecfrom_lst(t_ftlst *lst); -t_ftvec *ft_vecswallow_at(t_ftvec *vec, size_t index, t_ftvec *swallowed); +t_ftvec *ft_vecswallow_at( + t_ftvec *vec, size_t index, t_ftvec *swallowed); #endif -- cgit