More formatting updates. Reduced whitespace, looks even better.

This commit is contained in:
William Ferrell
2000-03-30 20:43:33 +00:00
parent a98c8109a8
commit ddfd41f53e
78 changed files with 0 additions and 590 deletions
-3
View File
@@ -13,12 +13,10 @@ typedef struct client {
extern LL *clients;
// Initialize and kill client list...
int client_init ();
int client_shutdown ();
// Create and destroy clients....
client *client_create (int sock);
int client_destroy (client * c);
@@ -35,5 +33,4 @@ void *client_get (client * c);
// Search for a client with a particular filedescriptor...
client *client_find_sock (int sock);
#endif