/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* cli_dele.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: jhalford +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2017/11/10 19:41:33 by jhalford #+# #+# */ /* Updated: 2017/11/10 19:41:33 by jhalford ### ########.fr */ /* */ /* ************************************************************************** */ #include "ftp_client.h" int cli_dele(t_ftp *ftp, char **av) { if (!av[1] || av[2]) return (console_msg(-1, "usage: unlink ")); ftp_cmd(ftp, "DELE %s", av[1]); ftp_code(ftp); return (0); }