18 lines
969 B
C
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);
|
|
}
|