summaryrefslogtreecommitdiffstats
path: root/source/history.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/history.c')
-rw-r--r--source/history.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/history.c b/source/history.c
index d404d36b..ff71fa6c 100644
--- a/source/history.c
+++ b/source/history.c
@@ -39,9 +39,14 @@
#define HISTORY_MAX_ENTRIES 25
+/**
+ * History element
+ */
typedef struct __element
{
+ /** Index in history */
long int index;
+ /** Entry */
char *name;
}_element;