42-archive/ftp/srcs/client/cli_pwd.c
Jack Halford 8ec4bc4ff8 stuff
2017-11-10 19:36:29 +01:00

21 lines
1,019 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* cli_pwd.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* 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);
}