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/index.h | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'src/base/index.h') diff --git a/src/base/index.h b/src/base/index.h index 9126706..7f9cbea 100644 --- a/src/base/index.h +++ b/src/base/index.h @@ -1,15 +1,14 @@ #ifndef INDEX_H -#define INDEX_H +# define INDEX_H -#include "main.h" -#include "list.h" +# include "main.h" +# include "list.h" -typedef struct index_item_struct -{ - int key; - void *data; +typedef struct index_item_struct { + int key; + void *data; } index_item_t; extern list_t *newIndex(); -- cgit v1.2.3