uFTP/uFTP.c

12 lines
149 B
C

#include <stdio.h>
#include <stdlib.h>
#include "ftpServer.h"
int main(int argc, char** argv)
{
runFtpServer();
return (EXIT_SUCCESS);
}