diff options
| author | Nick Wellnhofer <wellnhofer@aevum.de> | 2014-11-22 15:41:40 +0100 | 
|---|---|---|
| committer | Nick Wellnhofer <wellnhofer@aevum.de> | 2014-11-22 16:08:32 +0100 | 
| commit | 92a4d4cb4eb4a6103f68646a38f8caa29d6df3e3 (patch) | |
| tree | 7afd8e8fe28d288c9275f0c685fe56bca489f3c5 /src/node.h | |
| parent | fd56f2878a6360fb019b743ceb7e11b11a6e2481 (diff) | |
Fix and test node_check
Diffstat (limited to 'src/node.h')
| -rw-r--r-- | src/node.h | 4 | 
1 files changed, 3 insertions, 1 deletions
@@ -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  }  | 
