c_piscine__offshore_mains/c02/ex05.c
2023-11-30 23:05:07 +04:00

19 lines
205 B
C

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