mirror of
https://github.com/guezoloic/libft.git
synced 2026-01-25 07:34:16 +00:00
8 lines
108 B
C
8 lines
108 B
C
#include "libft.h"
|
|
|
|
int ft_isalpha(int c)
|
|
{
|
|
return ((c >= 'a' && c <= 'z')
|
|
|| (c >= 'A' && c <= 'Z'));
|
|
}
|