ft_strlowcase

This commit is contained in:
Tanguy MAZE
2018-04-09 18:07:17 +02:00
parent 02f4097b16
commit 31dc9baae0
3 changed files with 28 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 17:33:43 by tmaze ### ########.fr */
/* Updated: 2018/04/09 18:04:54 by tmaze ### ########.fr */
/* */
/* ************************************************************************** */
@@ -115,6 +115,7 @@ 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_strlowcase(char *s);
char *ft_strcapitalize(char *str);
size_t ft_strlcpy(char *restrict dst, const char *restrict src,\
size_t size);