c_piscine__offshore_mains/c02/ex09.c

10 lines
153 B
C
Raw Normal View History

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