mirror of
https://github.com/DavidGailleton/42-LibUnit.git
synced 2026-03-14 11:56:53 +01:00
19 lines
989 B
C
19 lines
989 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* 02_ko.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: dgaillet <dgaillet@student.42lyon.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2026/01/25 12:05:30 by dgaillet #+# #+# */
|
|
/* Updated: 2026/01/25 12:05:32 by dgaillet ### ########lyon.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "../tests.h"
|
|
|
|
int strncmp_ko_test(void)
|
|
{
|
|
return (!ft_strncmp("blabla", "test", 4));
|
|
}
|