-
Notifications
You must be signed in to change notification settings - Fork 1
/
ctrl_d_triggered.c
20 lines (18 loc) · 1.01 KB
/
ctrl_d_triggered.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ctrl_d_triggered.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ahamdaou <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/11/09 19:23:55 by ahamdaou #+# #+# */
/* Updated: 2021/11/09 19:23:55 by ahamdaou ### ########.fr */
/* */
/* ************************************************************************** */
#include "minishell.h"
t_bool ctrl_d_triggered(t_termarg *targ)
{
if (ft_strlen(targ->buf->str) == 0)
return (true);
return (false);
}