-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_isnl.c
More file actions
16 lines (15 loc) · 946 Bytes
/
ft_isnl.c
File metadata and controls
16 lines (15 loc) · 946 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isnl.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tyassine <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2015/12/15 22:38:54 by tyassine #+# #+# */
/* Updated: 2015/12/15 22:40:52 by tyassine ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isnl(char c)
{
return (c == '\n' ? 1 : 0);
}