netwhat/libft/tests/mandatory/split/test14.c
2023-03-07 05:20:37 +01:00

33 lines
1.1 KiB
C

/* ************************************************************************** */
/* */
/* .--. _ */
/* test14.c |o_o || | */
/* |:_/ || |_ _ ___ __ */
/* By: houtworm <codam@houtworm.net> // \ \ __| | | \ \/ / */
/* (| | )|_| |_| |> < */
/* Created: 2023/02/21 02:48:46 by houtworm /'\_ _/`\__|\__,_/_/\_\ */
/* Updated: 2023/03/01 02:31:50 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 = NULL;
r4 = ft_split(str4, '|');
if (r4)
r = 1;
free(r4);
return (r);
}