17 lines
948 B
C
17 lines
948 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_isascii.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: tischmid <timo42@proton.me> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/05/03 22:37:57 by tischmid #+# #+# */
|
|
/* Updated: 2023/05/03 22:40:05 by tischmid ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
int ft_isascii(int c)
|
|
{
|
|
return (c >= 0 && c <= 127);
|
|
}
|