mirror of
https://github.com/guezoloic/libft.git
synced 2026-01-25 04:34:14 +00:00
9 lines
128 B
C
9 lines
128 B
C
#include "libft.h"
|
|
|
|
int ft_isalpha(const char c)
|
|
{
|
|
if ((c > 65 && c < 90) || (c > 97 && c < 122))
|
|
return (1);
|
|
return (0);
|
|
}
|