summaryrefslogtreecommitdiff
path: root/src/base/index.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/base/index.h')
-rw-r--r--src/base/index.h13
1 files changed, 6 insertions, 7 deletions
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();