summaryrefslogtreecommitdiff
path: root/src/base/serverSendMsg.h
diff options
context:
space:
mode:
authorxHire <xhire@tuxportal.cz>2008-10-25 14:11:06 +0200
committerxHire <xhire@tuxportal.cz>2008-10-25 14:11:06 +0200
commitc8a9209d77a896bf49227e5aeccd54e91ccf29cc (patch)
tree6b7367406ebbc6ce3ea5e0c8668c75f6fb3f6ae9 /src/base/serverSendMsg.h
parentcb9deba915dd7b114eeb76601eb1c8b07c1ba90f (diff)
Changed style of the code to the K&R standard
Diffstat (limited to 'src/base/serverSendMsg.h')
-rw-r--r--src/base/serverSendMsg.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/base/serverSendMsg.h b/src/base/serverSendMsg.h
index c09c0f9..7bb19a3 100644
--- a/src/base/serverSendMsg.h
+++ b/src/base/serverSendMsg.h
@@ -1,16 +1,16 @@
#ifndef SERVER_SEND_MSG_H
-#define SERVER_SEND_MSG_H
+# define SERVER_SEND_MSG_H
-#include "server.h"
+# include "server.h"
-#define PROTO_SEND_ONE 0
-#define PROTO_SEND_ALL 1
-#define PROTO_SEND_BUT 3
-#define PROTO_SEND_ALL_SEES_TUX 4
+# define PROTO_SEND_ONE 0
+# define PROTO_SEND_ALL 1
+# define PROTO_SEND_BUT 3
+# define PROTO_SEND_ALL_SEES_TUX 4
extern void protoSendClient(int type, client_t * client, char *msg, int type2,
- int id);
+ int id);
#endif