17 lines
		
	
	
		
			949 B
		
	
	
	
		
			C
		
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			949 B
		
	
	
	
		
			C
		
	
	
	
/* ************************************************************************** */
 | 
						|
/*                                                                            */
 | 
						|
/*                                                        :::      ::::::::   */
 | 
						|
/*   ft_isprint.c                                       :+:      :+:    :+:   */
 | 
						|
/*                                                    +:+ +:+         +:+     */
 | 
						|
/*   By: pbonilla <eirodeis.lepnj@gmail.com>        +#+  +:+       +#+        */
 | 
						|
/*                                                +#+#+#+#+#+   +#+           */
 | 
						|
/*   Created: 2020/10/25 17:38:36 by pbonilla          #+#    #+#             */
 | 
						|
/*   Updated: 2020/11/18 14:08:51 by pbonilla         ###   ########.fr       */
 | 
						|
/*                                                                            */
 | 
						|
/* ************************************************************************** */
 | 
						|
 | 
						|
int	ft_isprint(int c)
 | 
						|
{
 | 
						|
	return (c >= 32 && c <= 126);
 | 
						|
}
 |