mirror of
https://github.com/NikitaIvanovV/ctpv.git
synced 2024-11-24 13:53:07 +01:00
10 lines
193 B
C
10 lines
193 B
C
#ifndef SERVER_H
|
|
#define SERVER_H
|
|
|
|
int server_listen(const char *id_s);
|
|
int server_set_fifo_var(const char *id_s);
|
|
int server_clear(const char *id_s);
|
|
int server_end(const char *id_s);
|
|
|
|
#endif
|