1
0
cub3d/libft/is/ft_isprint.c

21 lines
989 B
C
Raw Normal View History

2024-09-10 16:27:06 +02:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isprint.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: madumerg <madumerg@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/10/30 14:08:46 by madumerg #+# #+# */
/* Updated: 2023/11/02 14:58:37 by madumerg ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_isprint(int i)
{
if (i < 32 || i > 126)
return (0);
return (1);
}