From f861789c3e5e004395c1b7214757d5a83625d845 Mon Sep 17 00:00:00 2001 From: Dominik Kaiser Date: Wed, 6 Mar 2024 21:02:09 +0100 Subject: Setup and current progress Forgot to commit earlier... --- ft_isalpha.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 ft_isalpha.c (limited to 'ft_isalpha.c') diff --git a/ft_isalpha.c b/ft_isalpha.c new file mode 100644 index 0000000..667bb5f --- /dev/null +++ b/ft_isalpha.c @@ -0,0 +1,18 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* ft_isalpha.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: dkaiser = 'A' && c <= 'Z') || (c >= 'a' && c <= 'z')) + return (1); + return (0); +} -- cgit v1.2.3