9 lines
202 B
C
9 lines
202 B
C
#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 |