Skip to content

Commit 2af15da

Browse files
committed
checks for alphabetic character.
1 parent c3c0b2d commit 2af15da

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
#include "main.h"
2+
3+
/**
4+
* _isalpha - Entry point
5+
* @c: the integer value it receives
6+
* Description: checks if alphabet
7+
* Return: 1 if true. 0 if false
8+
*/
9+
10+
int _isalpha(int c)
11+
{
12+
if (c >= 'a' && c <= 'z')
13+
{
14+
return (1);
15+
}
16+
else if (c >= 'A' && c <= 'Z')
17+
{
18+
return (1);
19+
}
20+
else
21+
{
22+
return (0);
23+
}
24+
}

0 commit comments

Comments
 (0)