Files
threaded_network_chat/server.h
2026-03-12 15:56:28 -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