piscine-timo-moulinette/c02/ex04/ft_str_is_lowercase_test.c.tmp

12 lines
203 B
Plaintext

#include <stdio.h>
#define STR1 "abcd"
int main(void)
{
if (ft_str_is_lowercase(STR1))
printf(STR1 " is all lowercase\n");
else
printf(STR1 " contains non-lowercase characters\n");
return (0);
}