18 lines
968 B
C
18 lines
968 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_isprint.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: rzy <ry@student.42angouleme.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2026/08/23 22:26:41 by rzy #+# #+# */
|
|
/* Updated: 2026/08/23 22:27:43 by rzy ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
#include "libft.h"
|
|
|
|
int ft_isprint(int c)
|
|
{
|
|
return (c >= 32 && c <= 126);
|
|
}
|