19 lines
980 B
C
19 lines
980 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* 01_basic_test.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: elagouch <elagouch@student.42lyon.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2026/01/24 15:38:17 by elagouch #+# #+# */
|
|
/* Updated: 2026/01/24 15:39:06 by elagouch ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "libft.h"
|
|
|
|
int test_basic(void)
|
|
{
|
|
return (ft_strlen("hello, world") == 12);
|
|
}
|