20 lines
990 B
C
Executable File
20 lines
990 B
C
Executable File
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_isprint.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: yantoine <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/11/09 12:37:20 by yantoine #+# #+# */
|
|
/* Updated: 2023/11/30 09:02:47 by yantoine ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
#include "libft.h"
|
|
|
|
int ft_isprint(int c)
|
|
{
|
|
if (c >= 32 && c <= 126)
|
|
return (1);
|
|
return (0);
|
|
}
|