diff options
Diffstat (limited to 'ft_isalpha.c')
| -rw-r--r-- | ft_isalpha.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ft_isalpha.c b/ft_isalpha.c index 64d4b9a..054d96c 100644 --- a/ft_isalpha.c +++ b/ft_isalpha.c @@ -6,10 +6,12 @@ /* By: dkaiser <dkaiser@student.42heilbronn.de +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/03/04 19:59:23 by dkaiser #+# #+# */ -/* Updated: 2024/03/07 13:10:30 by dkaiser ### ########.fr */ +/* Updated: 2024/03/10 13:10:10 by dkaiser ### ########.fr */ /* */ /* ************************************************************************** */ +#include "libft.h" + int ft_isalpha(int c) { if ((c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z')) |
