ctpv/server.h

10 lines
193 B
C
Raw Normal View History

2022-05-25 23:57:50 +02:00
#ifndef SERVER_H
#define SERVER_H
2022-06-02 01:37:43 +02:00
int server_listen(const char *id_s);
int server_set_fifo_var(const char *id_s);
int server_clear(const char *id_s);
2022-05-25 23:57:50 +02:00
int server_end(const char *id_s);
#endif