summaryrefslogtreecommitdiff
path: root/src/base/main.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/main.h
parentcb9deba915dd7b114eeb76601eb1c8b07c1ba90f (diff)
Changed style of the code to the K&R standard
Diffstat (limited to 'src/base/main.h')
-rw-r--r--src/base/main.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/src/base/main.h b/src/base/main.h
index 9b0f59c..a8b5f7b 100644
--- a/src/base/main.h
+++ b/src/base/main.h
@@ -1,21 +1,21 @@
#ifndef MAIN_H
-#define MAIN_H
-#define WINDOW_SIZE_X 800
-#define WINDOW_SIZE_Y 600
-#ifdef NLS
-#define _(text) gettext(text)
-#else
-#define _(text) (text)
-#endif
+# define MAIN_H
+# define WINDOW_SIZE_X 800
+# define WINDOW_SIZE_Y 600
+# ifdef NLS
+# define _(text) gettext(text)
+# else
+# define _(text) (text)
+# endif
-#ifdef NLS
-#include <libintl.h>
-#include <locale.h>
-#endif
-#include "bool.h"
-#include "string_length.h"
-#include "path.h"
+# ifdef NLS
+# include <libintl.h>
+# include <locale.h>
+# endif
+# include "bool.h"
+# include "string_length.h"
+# include "path.h"
extern char *getParam(char *s);
extern char *getParamElse(char *s1, char *s2);