mirror of
https://github.com/guezoloic/libft.git
synced 2026-01-25 10:34:16 +00:00
7 lines
88 B
C
7 lines
88 B
C
#include "libft.h"
|
|
|
|
int ft_isalnum(int c)
|
|
{
|
|
return (ft_isdigit(c) || ft_isalpha(c));
|
|
}
|