19 lines
970 B
C
Executable File
19 lines
970 B
C
Executable File
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_isascii.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: tomoron <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/10/30 12:15:36 by tomoron #+# #+# */
|
|
/* Updated: 2023/10/30 12:31:38 by tomoron ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
int ft_isascii(int c)
|
|
{
|
|
if (c >= 0 && c <= 127)
|
|
return (1);
|
|
return (0);
|
|
}
|