19 lines
1,015 B
C
19 lines
1,015 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* cmd_rmd.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2017/11/10 19:21:10 by jhalford #+# #+# */
|
|
/* Updated: 2017/11/10 19:26:29 by jhalford ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "ftp_server.h"
|
|
|
|
int cmd_rmd(t_ftp *ftp, char **av)
|
|
{
|
|
(void)av;
|
|
return (ftp_ret(ftp, "503 not implemented"));
|
|
}
|