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

10 lines
153 B
C

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