summaryrefslogtreecommitdiff
path: root/src/screen/table.h
diff options
context:
space:
mode:
authorxHire <xhire@tuxportal.cz>2009-05-19 12:41:49 +0200
committerxHire <xhire@tuxportal.cz>2009-05-26 01:09:50 +0200
commit676600a83becf1d8da0ba8f7a56fa8ce544fe7ce (patch)
tree4a9009ac3c781585d502342c15a0a7de0129f414 /src/screen/table.h
parentafb63da1374aadd4a5feccff020e65b616d9b84a (diff)
Rectified the coding style in screen .h files
Diffstat (limited to 'src/screen/table.h')
-rw-r--r--src/screen/table.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/screen/table.h b/src/screen/table.h
index 9f4bf46..7940ee9 100644
--- a/src/screen/table.h
+++ b/src/screen/table.h
@@ -1,10 +1,8 @@
-
#ifndef SCREEN_TABLE_H
+#define SCREEN_TABLE_H
-# define SCREEN_TABLE_H
-
-# define SCREEN_TABLE_MAX_PLAYERS 10
-# define SCREEN_TABLE_FILE_HIGHSCORE_NAME "highscore"
+#define SCREEN_TABLE_MAX_PLAYERS 10
+#define SCREEN_TABLE_FILE_HIGHSCORE_NAME "highscore"
extern void table_start();
extern void table_draw();
@@ -14,4 +12,4 @@ extern int table_add(char *name, int score);
extern void table_init();
extern void table_quit();
-#endif
+#endif /* SCREEN_TABLE_H */