summaryrefslogtreecommitdiffstats
path: root/source/history.c
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2016-10-14 18:56:09 +0200
committerDave Davenport <qball@gmpclient.org>2016-10-14 18:56:09 +0200
commit9293c8b8ce5580c3be0d29366ca4287a706ee03e (patch)
tree076b6a0408cef1a7cd6143f9ddcee3c9fc0a3132 /source/history.c
parentce341f68851e1170e231fc25cc8183183a2da99b (diff)
More docu updates
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;