mirror of
https://github.com/hmaxnl/netex.git
synced 2025-04-18 19:28:12 +02:00
12 lines
189 B
C
Executable File
12 lines
189 B
C
Executable File
#ifndef SERVER_H
|
|
#define SERVER_H
|
|
#include "nx_curses.h"
|
|
|
|
int initialize_server(int argc, char* argv[]);
|
|
int server_execute(void);
|
|
|
|
/* Curses */
|
|
bool setup_srv_curses();
|
|
|
|
#endif //SERVER_H
|