Add a ft_vec module for vector struct
authorLukas Jiriste <ljiriste@student.42prague.com>
Sat, 9 Dec 2023 17:26:53 +0000 (18:26 +0100)
committerLukas Jiriste <ljiriste@student.42prague.com>
Sat, 9 Dec 2023 17:26:53 +0000 (18:26 +0100)
commit4efe200b336914d33bce1b1c4fcadc4fa002a5bd
treeb191463632a2dde58a42751799766643b586e945
parent5650ececb1cdb15e16c3d00a96463657042a2f88
Add a ft_vec module for vector struct

Add vector struct and operations on it that are somewhat similar to C++
std::vector.
Makefile
ft_vec/ft_vec_access.c [new file with mode: 0644]
ft_vec/ft_vec_append.c [new file with mode: 0644]
ft_vec/ft_vec_erase.c [new file with mode: 0644]
ft_vec/ft_vec_free.c [new file with mode: 0644]
ft_vec/ft_vec_init.c [new file with mode: 0644]
ft_vec/ft_vec_insert.c [new file with mode: 0644]
ft_vec/ft_vec_reserve.c [new file with mode: 0644]
inc/ft_vec.h [new file with mode: 0644]
inc/libft.h