Added a tags file. I dunno if this is something that's really supposed to

be in a CVS repository, but for now, it is, so there. :)
This commit is contained in:
William Ferrell
2000-03-30 20:28:01 +00:00
parent f5a5e9653b
commit a98c8109a8
8 changed files with 1762 additions and 648 deletions
+6 -6
View File
@@ -22,15 +22,15 @@
// Client functions...
int sock_connect(char *host, unsigned short int port);
int sock_close(int fd);
int sock_connect (char *host, unsigned short int port);
int sock_close (int fd);
// Send/receive lines of text
int sock_send_string(int fd, char *string);
int sock_send_string (int fd, char *string);
// Recv gives only one line per call...
int sock_recv_string(int fd, char *dest, size_t maxlen);
int sock_recv_string (int fd, char *dest, size_t maxlen);
// Send/receive raw data
int sock_send(int fd, void *src, size_t size);
int sock_recv(int fd, void *dest, size_t maxlen);
int sock_send (int fd, void *src, size_t size);
int sock_recv (int fd, void *dest, size_t maxlen);
// Er, ignore the rest of this file. I'll clean it up sometime...