/* Network IO Functions */ #ifndef NETIO_H #define NETIO_H extern int NetIsSocketWritable(int s, int *error_code_rtn); extern int NetIsSocketReadable(int s, int *error_code_rtn); extern int NetSend(int socket, const void *buf, int nbytes); extern int NetRecv(int socket, void *buf, int nbytes); #endif /* NETIO_H */