Minishell/libft/ft_isprint.c
Elisée Sydney Adjiguidi 5641ed8c2d crash test
2022-03-06 15:37:13 +01:00

22 lines
998 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isprint.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: sadjigui <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/05/22 13:11:25 by sadjigui #+# #+# */
/* Updated: 2021/05/22 13:12:26 by sadjigui ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_isprint(int i)
{
if (i >= 32 && i <= 126)
return (1);
else
return (0);
}