ft_str_is_lowercase

This commit is contained in:
Tanguy MAZE
2018-04-09 10:55:44 +02:00
parent d5d08cdbb5
commit 36f66331d6
3 changed files with 31 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:34:10 by tmaze ### ########.fr */
/* Updated: 2018/04/09 10:39:56 by tmaze ### ########.fr */
/* */
/* ************************************************************************** */
@@ -111,5 +111,9 @@ t_list *ft_lstmap(t_list *lst, t_list *(*f)(t_list *elem));
int ft_isupper(int c);
int ft_islower(int c);
int ft_str_is_alpha(char *str);
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);
#endif