/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* main.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: jhalford +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2016/11/07 15:00:15 by jhalford #+# #+# */ /* Updated: 2016/11/25 10:49:54 by jhalford ### ########.fr */ /* */ /* ************************************************************************** */ #include "ft_ls.h" int main(int ac, char **av) { t_list *dir; t_list *ent; int opts; dir = NULL; ent = NULL; opts = ft_ls_parse(ac, av, &dir, &ent); ft_ls_files(&ent, &dir, NULL, &opts); ft_lstdel(&ent, &ft_ent_free); ft_ls_dirs(dir, opts); return (errno); }