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