Files
42-LibUnit/tests/ft_strlen/02_null_test.c
2026-01-24 15:45:40 +01:00

18 lines
969 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* 02_null_test.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: elagouch <elagouch@student.42lyon.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2026/01/24 15:38:17 by elagouch #+# #+# */
/* Updated: 2026/01/24 15:40:42 by elagouch ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int test_null(void) {
return (ft_strlen(NULL) == 0);
}