12 lines
156 B
C
12 lines
156 B
C
|
#ifndef __SERVER_H
|
||
|
#define __SERVER_H
|
||
|
|
||
|
/*
|
||
|
* This file represents the public server api for CFTP.
|
||
|
*
|
||
|
*/
|
||
|
void run_server(const char *, const int);
|
||
|
|
||
|
#endif
|
||
|
|