20 lines
991 B
C
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);
|
|
}
|