-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_str_is_alpha.c
40 lines (36 loc) · 1.25 KB
/
ft_str_is_alpha.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_str_is_alpha.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: davgalle <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/07/17 11:06:17 by davgalle #+# #+# */
/* Updated: 2023/07/18 10:13:10 by davgalle ### ########.fr */
/* */
/* ************************************************************************** */
#include<unistd.h>
#include<stdio.h>
#include<string.h>
int ft_str_is_alpha(char *str)
{
int i;
i = 0;
while (str[i] != '\0')
{
if ((str[i] >= 'A' && str[i] <= 'Z')
|| (str[i] >= 'a' && str[i] <= 'z'))
i++;
else
return (0);
}
return (1);
}
/*
int main(void)
{
char str[] = "eskerrik asko";
ft_str_is_alpha(str);
printf("%d", ft_str_is_alpha(str));
return (0);
}*/