aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-11-17 08:20:23 +0100
committerMattias Andrée <maandree@operamail.com>2014-11-17 08:20:23 +0100
commitb4f9a930106bdda3836c57a8e1510e995ed96663 (patch)
treeeee1fe146665be9a84a4b6a19b4da10aa0309c22 /src
parentmacro stuff (diff)
downloadmds-b4f9a930106bdda3836c57a8e1510e995ed96663.tar.gz
mds-b4f9a930106bdda3836c57a8e1510e995ed96663.tar.bz2
mds-b4f9a930106bdda3836c57a8e1510e995ed96663.tar.xz
doc
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src')
-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 \
{ \