minishell
ft_isprint.c File Reference
#include "ft_is.h"
Include dependency graph for ft_isprint.c:

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 15 of file ft_isprint.c.

16 {
17  return (0x20 <= c && c <= 0x7E);
18 }