aboutsummaryrefslogtreecommitdiffstats
path: root/src/argparser.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/argparser.c')
-rw-r--r--src/argparser.c15
1 files changed, 14 insertions, 1 deletions
diff --git a/src/argparser.c b/src/argparser.c
index 704174c..37180d4 100644
--- a/src/argparser.c
+++ b/src/argparser.c
@@ -81,9 +81,22 @@ typedef struct
*/
typedef struct
{
+ /**
+ * Available keys
+ */
char** keys;
+
+ /**
+ * The number of available keys
+ */
long key_count;
-} args_Map; /*TODO*/
+
+ /**
+ * Indefinite depth array with 17 elements per level, the last being the value at the position
+ */
+ void** data;
+
+} args_Map;
/**