/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_clear_line.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: jhalford +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2016/11/10 13:42:45 by jhalford #+# #+# */ /* Updated: 2016/11/10 13:42:59 by jhalford ### ########.fr */ /* */ /* ************************************************************************** */ #include "line_editing.h" int ft_clear_line(t_data *data, char *buf) { ft_line_end(data, buf); while (ft_key_del(data, buf)) ; return (1); }