aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/mds-kbdc/make-tree.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/mds-kbdc/make-tree.c b/src/mds-kbdc/make-tree.c
index ce956f2..d96ae47 100644
--- a/src/mds-kbdc/make-tree.c
+++ b/src/mds-kbdc/make-tree.c
@@ -646,6 +646,13 @@
while (0)
+/**
+ * Create new leaf and update the stack accordingly
+ *
+ * @param LOWERCASE:identifier The keyword, for the node type, in lower case
+ * @param UPPERCASE:identifier The keyword, for the node type, in upper case
+ * @param PARSE:expression Statement, without final semicolon, to retrieve members
+ */
#define MAKE_LEAF(LOWERCASE, UPPERCASE, PARSE) \
do \
{ \
@@ -656,6 +663,13 @@
while (0)
+/**
+ * Create new branch and update the stack accordingly
+ *
+ * @param LOWERCASE:identifier The keyword, for the node type, in lower case
+ * @param UPPERCASE:identifier The keyword, for the node type, in upper case
+ * @param PARSE:expression Statement, without final semicolon, to retrieve members
+ */
#define MAKE_BRANCH(LOWERCASE, UPPERCASE, PARSE) \
do \
{ \