#include int ft_strlen(char *str); int main(void) { int l = ft_strlen("hello world!\0no!"); printf("len = %d\n", l); }