#include #define STR "hEllO worLd" int main(void) { char s1[] = STR; printf("%s\n", s1); printf("%s\n", ft_strlowcase(s1)); return (0); }