removing the libft of rparodi

This commit is contained in:
Raphael 2024-11-08 19:37:30 +01:00
parent 0391323626
commit be6038dcc8
523 changed files with 724 additions and 3336 deletions

View file

@ -1,29 +0,0 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* tests_vec_new.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: bgoulard <bgoulard@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/05/24 11:21:20 by bgoulard #+# #+# */
/* Updated: 2024/05/24 20:44:14 by bgoulard ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_vector.h"
#include "ft_vector_types.h"
int test_vec_new(void)
{
t_vector *vec;
vec = ft_vec_new();
if (vec->count != 0)
return (1);
else if (vec->cappacity != FT_VECTOR_BASE_LEN)
return (1);
else if (!vec->datas)
return (1);
ft_vec_destroy(&vec);
return (0);
}