/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* cli_pwd.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: jhalford +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2017/11/10 12:33:09 by jhalford #+# #+# */ /* Updated: 2017/11/10 19:27:13 by jhalford ### ########.fr */ /* */ /* ************************************************************************** */ #include "ftp_client.h" int cli_pwd(t_ftp *ftp, char **av) { (void)av; ftp_cmd(ftp, "PWD"); ftp_code(ftp); return (0); }