maxishell
Implementation of a shell for Linux-like systems
Loading...
Searching...
No Matches
Functions
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
}
lib
libft
src
ft_isprint.c
Generated by
1.9.8