Files
42-LibUnit/real_tests/ft_strlen/01_basic.c
2026-01-24 16:20:53 +01:00

19 lines
983 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* 01_basic.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: elagouch <elagouch@student.42lyon.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2026/01/24 15:38:17 by elagouch #+# #+# */
/* Updated: 2026/01/24 16:17:14 by elagouch ### ########.fr */
/* */
/* ************************************************************************** */
#include "../tests.h"
int test_basic(void)
{
return (ft_strlen("hello, world") == 12);
}