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

Go to the source code of this file.

Functions

int ft_isascii (int c)
 

Function Documentation

◆ ft_isascii()

int ft_isascii ( int  c)

Definition at line 13 of file ft_isascii.c.

14{
15 return (c >= 0 && c <= 127);
16}