21 lines
991 B
C
21 lines
991 B
C
|
/* ************************************************************************** */
|
||
|
/* */
|
||
|
/* :::::::: */
|
||
|
/* ft_isascii.c :+: :+: :+: */
|
||
|
/* +:+ */
|
||
|
/* By: djonker <marvin@codam.nl> +#+ */
|
||
|
/* +#+ */
|
||
|
/* Created: 2020/11/01 19:10:41 by djonker #+# #+# */
|
||
|
/* Updated: 2023/02/07 00:39:56 by houtworm ### ########.fr */
|
||
|
/* */
|
||
|
/* ************************************************************************** */
|
||
|
|
||
|
#include "../libft.h"
|
||
|
|
||
|
int ft_isascii(int c)
|
||
|
{
|
||
|
if (c < 0 || c > 127)
|
||
|
return (0);
|
||
|
return (1);
|
||
|
}
|