tgrekov-libft
HIVE libft Oct 2023
Loading...
Searching...
No Matches
ft_isascii.c
Go to the documentation of this file.
1/* ************************************************************************** */
2/* */
3/* ::: :::::::: */
4/* ft_isascii.c :+: :+: :+: */
5/* +:+ +:+ +:+ */
6/* By: tgrekov <tgrekov@student.hive.fi> +#+ +:+ +#+ */
7/* +#+#+#+#+#+ +#+ */
8/* Created: 2023/10/23 13:33:15 by tgrekov #+# #+# */
9/* Updated: 2023/11/04 22:24:43 by tgrekov ### ########.fr */
10/* */
11/* ************************************************************************** */
12
26int ft_isascii(int c)
27{
28 return (c >= 0 && c <= 127);
29}
int ft_isascii(int c)
Is c in the ASCII character range.
Definition ft_isascii.c:26