/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_line_start.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: jhalford +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2016/11/10 13:44:34 by jhalford #+# #+# */ /* Updated: 2016/11/10 13:44:34 by jhalford ### ########.fr */ /* */ /* ************************************************************************** */ #include "line_editing.h" int ft_line_start(t_data *data, t_dlist **input_chain, char *buf) { while (ft_cursor_left(data, input_chain, buf)) ; return (0); }