22 lines
996 B
C
22 lines
996 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_isprint.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: apommier <apommier@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2020/11/29 00:10:55 by apommier #+# #+# */
|
|
/* Updated: 2020/11/29 17:05:23 by apommier ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "libft.h"
|
|
|
|
int ft_isprint(int c)
|
|
{
|
|
if (c > 31 && c < 127)
|
|
return (c);
|
|
else
|
|
return (0);
|
|
}
|