libft/tests/mandatory/split/test12.c
2023-04-15 06:46:13 +02:00

34 lines
1.1 KiB
C

/* ************************************************************************** */
/* */
/* .--. _ */
/* test12.c |o_o || | */
/* |:_/ || |_ _ ___ __ */
/* By: houtworm <codam@houtworm.net> // \ \ __| | | \ \/ / */
/* (| | )|_| |_| |> < */
/* Created: 2023/02/21 02:48:46 by houtworm /'\_ _/`\__|\__,_/_/\_\ */
/* Updated: 2023/03/01 02:37:41 by houtworm \___)=(___/ */
/* */
/* ************************************************************************** */
#include "../../tmp/libft.h"
#include <stdio.h>
#include <string.h>
int main(void)
{
int r;
char *str4;
char *s9;
char *s10;
char **r4;
r = 0;
str4 = "|||||||";
r4 = ft_split(str4, '|');
if ((r4[0]))
r = 1;
free(r4[0]);
free(r4);
return (r);
}