#ifndef NETCODE_H #define NETCODE_H // Returns a socket file descriptor. int NET_Connect(const char* host, int port); void NET_Send(int sockfd, const char* toSend); void NET_Close(int sockfd); #endif