Files
ct/server.h
2026-03-23 17:01:32 -05:00

10 lines
147 B
C

#ifndef SERVER_H
#define SERVER_H
void *waitForClient(void *argss);
void *pollForClient();
int setupServer(int port);
void closeServer();
#endif