aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2020-10-11 14:05:28 +0200
committerCharles Cabergs <me@cacharle.xyz>2020-10-11 14:05:28 +0200
commit783260a4c01ebfe4b4bcfc56d57a4d99603f904f (patch)
tree6ba1739662577db701969e33a79676c8f0460413 /include
parentc33343322ef66d96337533082313b1256862023a (diff)
downloadlibft-783260a4c01ebfe4b4bcfc56d57a4d99603f904f.tar.gz
libft-783260a4c01ebfe4b4bcfc56d57a4d99603f904f.tar.bz2
libft-783260a4c01ebfe4b4bcfc56d57a4d99603f904f.zip
Norming and removing ft_printf,heapsort
Diffstat (limited to 'include')
-rw-r--r--include/libft_vec.h5
1 files changed, 3 insertions, 2 deletions
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 <charles.cabergs@gmail.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* 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