commit
This commit is contained in:
23
C_02/tests_C02/ex09.c
Normal file
23
C_02/tests_C02/ex09.c
Normal file
@@ -0,0 +1,23 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* ex09.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: tkondrac <tkondrac@student.42lausan> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2021/08/08 15:14:28 by tkondrac #+# #+# */
|
||||
/* Updated: 2021/08/08 15:14:31 by tkondrac ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include <stdio.h>
|
||||
#include "../ex09/ft_strcapitalize.c"
|
||||
|
||||
int main(void)
|
||||
{
|
||||
char c[] = "salut, comment tu vas ? 42mots quarante-deux; cinquante+et+un";
|
||||
|
||||
printf("original :%s\n", c);
|
||||
printf("capitalized :%s\n", ft_strcapitalize(c));
|
||||
return (0);
|
||||
}
|
||||
Reference in New Issue
Block a user