This repository has been archived on 2020-05-27. You can view files and clone it, but cannot push or open issues/pull-requests.
|
#ifndef __SERVER_H
|
|
#define __SERVER_H
|
|
|
|
/*
|
|
* This file represents the public server api for CFTP.
|
|
*
|
|
*/
|
|
void run_server(const char *, const int);
|
|
|
|
#endif
|
|
|