diff options
Diffstat (limited to 'ft_isalpha.c')
| -rw-r--r-- | ft_isalpha.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ft_isalpha.c b/ft_isalpha.c index 667bb5f..64d4b9a 100644 --- a/ft_isalpha.c +++ b/ft_isalpha.c @@ -6,11 +6,11 @@ /* By: dkaiser <dkaiser@student.42heilbronn.de +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/03/04 19:59:23 by dkaiser #+# #+# */ -/* Updated: 2024/03/04 21:06:31 by dkaiser ### ########.fr */ +/* Updated: 2024/03/07 13:10:30 by dkaiser ### ########.fr */ /* */ /* ************************************************************************** */ -int isalpha(int c) +int ft_isalpha(int c) { if ((c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z')) return (1); |
