aboutsummaryrefslogtreecommitdiffstats
path: root/apps/clients.h
diff options
context:
space:
mode:
authorjames <>2008-05-09 12:35:57 +0000
committerjames <>2008-05-09 12:35:57 +0000
commit6a4255cf4a29954108907716e9e69c72f041d5da (patch)
treed54e7e1a64f9cbb4c6295a8bc3459717e61790c5 /apps/clients.h
parentc5250bc7e889c05ed28a480ddf100dcf0b17a80c (diff)
downloadsympathy-6a4255cf4a29954108907716e9e69c72f041d5da.tar.gz
sympathy-6a4255cf4a29954108907716e9e69c72f041d5da.tar.bz2
sympathy-6a4255cf4a29954108907716e9e69c72f041d5da.zip
*** empty log message ***
Diffstat (limited to 'apps/clients.h')
-rw-r--r--apps/clients.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/apps/clients.h b/apps/clients.h
index d0bffd3..e467c67 100644
--- a/apps/clients.h
+++ b/apps/clients.h
@@ -12,6 +12,9 @@
/*
* $Log$
+ * Revision 1.12 2008/05/09 12:35:57 james
+ * *** empty log message ***
+ *
* Revision 1.11 2008/03/11 17:56:04 james
* *** empty log message ***
*
@@ -50,14 +53,16 @@
#ifndef __CLIENTS_H__
#define __CLIENTS_H__
-typedef struct Client_struct {
+typedef struct Client_struct
+{
struct Client_struct *next;
int initialized;
Socket *s;
int dead;
} Client;
-typedef struct {
+typedef struct
+{
Client *head;
int n;
} Clients;