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

10 lines
145 B
C

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