18 lines
967 B
C
18 lines
967 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_isascii.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: rzy <ry@student.42angouleme.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2026/08/23 22:24:58 by rzy #+# #+# */
|
|
/* Updated: 2026/08/23 22:26:30 by rzy ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
#include "libft.h"
|
|
|
|
int ft_isascii(int c)
|
|
{
|
|
return (c >= 0 && c <= 127);
|
|
}
|