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/director.h | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'src/base/director.h') diff --git a/src/base/director.h b/src/base/director.h index f050642..ea61dd0 100644 --- a/src/base/director.h +++ b/src/base/director.h @@ -1,14 +1,13 @@ #ifndef DIRECTOR_H -#define DIRECTOR_H +# define DIRECTOR_H -#include "main.h" -#include "list.h" +# include "main.h" +# include "list.h" -typedef struct director_struct -{ - char *path; - list_t *list; +typedef struct director_struct { + char *path; + list_t *list; } director_t; extern director_t *loadDirector(char *s); -- cgit v1.2.3