pipex/libft/tests/mandatory/strncmp/test13.c
2023-10-26 18:33:37 +02:00

23 lines
1.0 KiB
C

/* ************************************************************************** */
/* */
/* :::::::: */
/* test13.c :+: :+: */
/* +:+ */
/* By: houtworm <codam@houtworm.net> +#+ */
/* +#+ */
/* Created: 2023/02/21 02:42:46 by houtworm #+# #+# */
/* Updated: 2023/10/18 17:15:24 by houtworm ######## odam.nl */
/* */
/* ************************************************************************** */
#include "../../tmp/libft.h"
#include <stdio.h>
#include <string.h>
int main(void)
{
if (!ft_strncmp("Hallo", NULL, 4))
return (1);
return (0);
}