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

19 lines
201 B
C

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