c_piscine__offshore_mains/c02/ex06.c

19 lines
205 B
C
Raw Normal View History

2023-11-28 15:40:55 +00:00
#include <tests.h>
int ft_str_is_printable(char *str);
int main(int argc, char **argv)
{
if (argc == 2)
printf("%i\n", ft_str_is_printable(argv[1]));
}
void setUp(void)
{
}
void tearDown(void)
{
}