ft_strcapitalize

This commit is contained in:
Tanguy MAZE
2018-04-09 11:31:49 +02:00
parent 4e6c470108
commit 911dfb55b5
3 changed files with 33 additions and 3 deletions

View File

@@ -6,7 +6,7 @@
/* By: tmaze <tmaze@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/04/08 00:12:36 by tmaze #+# #+# */
/* Updated: 2018/04/09 10:39:56 by tmaze ### ########.fr */
/* Updated: 2018/04/09 11:29:58 by tmaze ### ########.fr */
/* */
/* ************************************************************************** */
@@ -115,5 +115,6 @@ int ft_str_is_lowercase(char *str);
int ft_str_is_numeric(char *str);
int ft_str_is_printable(char *str);
int ft_str_is_uppercase(char *str);
char *ft_strcapitalize(char *str);
#endif