cub3d/libft/tests/mandatory/substr/test8.c

29 lines
1.1 KiB
C
Raw Normal View History

2023-10-25 13:56:45 +02:00
/* ************************************************************************** */
/* */
/* .--. _ */
/* test8.c |o_o || | */
/* |:_/ || |_ _ ___ __ */
/* By: houtworm <codam@houtworm.net> // \ \ __| | | \ \/ / */
/* (| | )|_| |_| |> < */
/* Created: 2023/02/21 02:36:13 by houtworm /'\_ _/`\__|\__,_/_/\_\ */
/* Updated: 2023/03/02 10:48:34 by djonker \___)=(___/ */
/* */
/* ************************************************************************** */
#include "../../tmp/libft.h"
#include <stdio.h>
#include <string.h>
int main(void)
{
int ret;
char *r;
ret = 0;
r = ft_substr("string", 1, 2);
if (strncmp(r, "tr\0", 3))
ret = 1;
free (r);
return (ret);
}