summaryrefslogtreecommitdiff
path: root/src/base/checkFront.h
diff options
context:
space:
mode:
authorxHire <xhire@tuxportal.cz>2009-05-24 20:13:33 +0200
committerxHire <xhire@tuxportal.cz>2009-05-26 01:11:54 +0200
commitb992c007c186fddf31f67a7ed0bd5789cfb9b85e (patch)
tree8afca953f70438207634bc9a1e073bbeafe47ad6 /src/base/checkFront.h
parent6ac111e0ed67187554ead8cccc241029465e8979 (diff)
Rectified the coding style in base .h files
Diffstat (limited to 'src/base/checkFront.h')
-rw-r--r--src/base/checkFront.h27
1 files changed, 13 insertions, 14 deletions
diff --git a/src/base/checkFront.h b/src/base/checkFront.h
index cde6cfd..a65d532 100644
--- a/src/base/checkFront.h
+++ b/src/base/checkFront.h
@@ -1,21 +1,20 @@
-
#ifndef CHECK_FRONT_H
+#define CHECK_FRONT_H
-# define CHECK_FRONT_H
-# define CHECK_FRONT_SEND_TIME_INTERVAL 100
-# define CHECK_FRONT_MAX_COUNT_SEND 30
+#include "list.h"
+#include "server.h"
-# define CHECK_FRONT_ID_NONE -1
-# define CHECK_FRONT_TYPE_SIMPLE 1
-# define CHECK_FRONT_TYPE_CHECK 2
+#define CHECK_FRONT_SEND_TIME_INTERVAL 100
+#define CHECK_FRONT_MAX_COUNT_SEND 30
-# include "list.h"
-# include "server.h"
+#define CHECK_FRONT_ID_NONE -1
+#define CHECK_FRONT_TYPE_SIMPLE 1
+#define CHECK_FRONT_TYPE_CHECK 2
extern list_t *check_front_new();
-extern void check_front_msg_add(list_t * list, char *msg, int type, int id);
-extern void check_front_event(client_t * client);
-extern void check_front_del_msg(list_t * listCheckFront, int id);
-extern void check_front_destroy(list_t * p);
+extern void check_front_msg_add(list_t *list, char *msg, int type, int id);
+extern void check_front_event(client_t *client);
+extern void check_front_del_msg(list_t *listCheckFront, int id);
+extern void check_front_destroy(list_t *p);
-#endif
+#endif /* CHECK_FRONT_H */