/* ************************************************************************** */ /* LE - / */ /* / */ /* ft_isascii.c .:: .:/ . .:: */ /* +:+:+ +: +: +:+:+ */ /* By: rbousset +:+ +: +: +:+ */ /* #+# #+ #+ #+# */ /* Created: 2019/10/07 18:18:31 by rbousset #+# ## ## #+# */ /* Updated: 2019/10/13 08:41:32 by rbousset ### #+. /#+ ###.fr */ /* / */ /* / */ /* ************************************************************************** */ int ft_isascii(int c) { if (c >= 0 && c <= 127) return (1); return (0); }