]> git.mdlowis.com Git - proto/sclpl.git/commitdiff
Added name attribute to new dictionary type
authorMichael D. Lowis <mike@mdlowis.com>
Mon, 5 May 2014 01:46:49 +0000 (21:46 -0400)
committerMichael D. Lowis <mike@mdlowis.com>
Mon, 5 May 2014 01:46:49 +0000 (21:46 -0400)
source/slvm/slvm.h

index f56399c12a3f882c0a448565b9c3cc2a6a7c11e1..a7a0d7ddb99bb97dd12794484fba8e5575f2e669 100644 (file)
@@ -81,6 +81,8 @@ typedef struct word_t {
 typedef struct dict_t {
     /** Pointer to the previously loaded dictionary */
     struct dict_t* link;
+    /** The name of the dictionary */
+    char* name;
     /** Pointer to the most recently defined word in this dictionary */
     word_t* words;
 } dict_t;