42-archive/ftp/srcs/client/cli_ls.c
2017-11-08 17:23:37 +01:00

20 lines
991 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* cmd_ls.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/11/08 13:43:10 by jhalford #+# #+# */
/* Updated: 2017/11/08 13:50:20 by jhalford ### ########.fr */
/* */
/* ************************************************************************** */
#include "ftp_client.h"
int cli_ls(int sock, char **av)
{
(void)sock;
(void)av;
return (0);
}