ft_str_is_alpha

This commit is contained in:
Tanguy MAZE
2018-04-09 10:34:59 +02:00
parent 0041fd45f0
commit d5d08cdbb5
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 10:13:13 by tmaze ### ########.fr */
/* Updated: 2018/04/09 10:34:10 by tmaze ### ########.fr */
/* */
/* ************************************************************************** */
@@ -110,5 +110,6 @@ 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);
#endif