wip_parsing
This commit is contained in:
20
libft/is/ft_isalpha.c
Normal file
20
libft/is/ft_isalpha.c
Normal file
@ -0,0 +1,20 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* ft_isalpha.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: madumerg <madumerg@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/10/30 12:35:26 by madumerg #+# #+# */
|
||||
/* Updated: 2023/11/02 14:58:21 by madumerg ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "libft.h"
|
||||
|
||||
int ft_isalpha(int i)
|
||||
{
|
||||
if ((i >= 'a' && i <= 'z') || (i >= 'A' && i <= 'Z'))
|
||||
return (1);
|
||||
return (0);
|
||||
}
|
Reference in New Issue
Block a user