maxishell
Implementation of a shell for Linux-like systems
Loading...
Searching...
No Matches
ft_isprint.c File Reference

Go to the source code of this file.

Functions

int ft_isprint (int c)
 

Function Documentation

◆ ft_isprint()

int ft_isprint ( int  c)

Definition at line 13 of file ft_isprint.c.

14{
15 return (c >= ' ' && c <= '~');
16}