From c8a9209d77a896bf49227e5aeccd54e91ccf29cc Mon Sep 17 00:00:00 2001 From: xHire Date: Sat, 25 Oct 2008 14:11:06 +0200 Subject: Changed style of the code to the K&R standard --- src/base/main.h | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'src/base/main.h') 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 -#include -#endif -#include "bool.h" -#include "string_length.h" -#include "path.h" +# ifdef NLS +# include +# include +# endif +# include "bool.h" +# include "string_length.h" +# include "path.h" extern char *getParam(char *s); extern char *getParamElse(char *s1, char *s2); -- cgit v1.2.3