summaryrefslogtreecommitdiff
path: root/ft_isalpha.c
diff options
context:
space:
mode:
authorDominik Kaiser2024-03-07 16:51:56 +0100
committerDominik Kaiser2024-03-07 16:51:56 +0100
commitc63ee0defff25db4612e9114d847b5045948e366 (patch)
treea498874d7b02af25d0511b5f48bb5e57ccea5919 /ft_isalpha.c
parentf861789c3e5e004395c1b7214757d5a83625d845 (diff)
downloadlibft-c63ee0defff25db4612e9114d847b5045948e366.tar.gz
libft-c63ee0defff25db4612e9114d847b5045948e366.zip
Add stuff, fix stuff and whatever
Diffstat (limited to 'ft_isalpha.c')
-rw-r--r--ft_isalpha.c4
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);