mirror of
https://github.com/kingk85/uFTP.git
synced 2025-07-16 16:56:10 +03:00
12 lines
149 B
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);
|
|
}
|
|
|