Files
bbirc/include/netcode.h
2026-05-11 15:14:22 +03:00

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