tgrekov-libft
HIVE libft Oct 2023
Loading...
Searching...
No Matches
ft_isprint.c
Go to the documentation of this file.
1/* ************************************************************************** */
2/* */
3/* ::: :::::::: */
4/* ft_isprint.c :+: :+: :+: */
5/* +:+ +:+ +:+ */
6/* By: tgrekov <tgrekov@student.hive.fi> +#+ +:+ +#+ */
7/* +#+#+#+#+#+ +#+ */
8/* Created: 2023/10/23 13:35:10 by tgrekov #+# #+# */
9/* Updated: 2023/11/04 22:24:41 by tgrekov ### ########.fr */
10/* */
11/* ************************************************************************** */
12
26int ft_isprint(int c)
27{
28 return (c >= ' ' && c <= '~');
29}
int ft_isprint(int c)
Is c a printable character.
Definition ft_isprint.c:26