19 lines
968 B
C
19 lines
968 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_isascii.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: aortigos <aortigos@student.42malaga.com> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/09/20 17:55:43 by aortigos #+# #+# */
|
|
/* Updated: 2023/10/26 07:39:27 by aortigos ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "libft.h"
|
|
|
|
int ft_isascii(int c)
|
|
{
|
|
return (c >= 0 && c <= 127);
|
|
}
|