20 lines
992 B
C
20 lines
992 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_isprint.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: gtertysh <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2016/12/01 15:22:01 by gtertysh #+# #+# */
|
|
/* Updated: 2016/12/01 15:24:46 by gtertysh ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "libft.h"
|
|
|
|
int ft_isprint(int c)
|
|
{
|
|
if (c >= 32 && c <= 126)
|
|
return (1);
|
|
return (0);
|
|
}
|