c_piscine__offshore_mains/c02/ex04.c
Alexey Chubukov 20fcf7d906 more stuff
2023-11-28 19:40:55 +04:00

10 lines
157 B
C

#include <tests.h>
int ft_str_is_lowercase(char *str);
int main(int argc, char **argv)
{
if (argc == 2)
printf("%i\n", ft_str_is_lowercase(argv[1]));
}