33 lines
1.4 KiB
C
33 lines
1.4 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* test_insert_n.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: bgoulard <bgoulard@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/05/25 17:34:36 by bgoulard #+# #+# */
|
|
/* Updated: 2024/06/03 10:16:00 by bgoulard ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "ft_string.h"
|
|
#include "ft_string_types.h"
|
|
|
|
int test_string_insert_n(void)
|
|
{
|
|
t_string *str;
|
|
|
|
str = ft_string_from("Hello");
|
|
ft_string_insert_n(str, " World", 0, 5);
|
|
if (ft_string_cmp(str, " WorlHello") != 0)
|
|
return (1);
|
|
if (str->length != 10 || str->capacity < 10)
|
|
return (2);
|
|
ft_string_insert_n(str, "!", 99, 1);
|
|
if (ft_string_cmp(str, " WorlHello!") != 0)
|
|
return (3);
|
|
if (str->length != 11 || str->capacity < 11)
|
|
return (4);
|
|
ft_string_destroy(&str);
|
|
return (0);
|
|
}
|