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