summaryrefslogtreecommitdiff
path: root/src/node.h
diff options
context:
space:
mode:
authorNick Wellnhofer <wellnhofer@aevum.de>2014-11-22 15:41:40 +0100
committerNick Wellnhofer <wellnhofer@aevum.de>2014-11-22 16:08:32 +0100
commit92a4d4cb4eb4a6103f68646a38f8caa29d6df3e3 (patch)
tree7afd8e8fe28d288c9275f0c685fe56bca489f3c5 /src/node.h
parentfd56f2878a6360fb019b743ceb7e11b11a6e2481 (diff)
Fix and test node_check
Diffstat (limited to 'src/node.h')
-rw-r--r--src/node.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/node.h b/src/node.h
index 2d7f0a1..d1245a5 100644
--- a/src/node.h
+++ b/src/node.h
@@ -5,6 +5,8 @@
extern "C" {
#endif
+#include <stdio.h>
+
#include "cmark.h"
#include "buffer.h"
#include "chunk.h"
@@ -62,7 +64,7 @@ struct cmark_node {
};
CMARK_EXPORT int
-cmark_node_check(cmark_node *node);
+cmark_node_check(cmark_node *node, FILE *out);
#ifdef __cplusplus
}