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