summaryrefslogtreecommitdiff
path: root/src/parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser.h')
-rw-r--r--src/parser.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/parser.h b/src/parser.h
index ab21d0f..1309420 100644
--- a/src/parser.h
+++ b/src/parser.h
@@ -4,6 +4,7 @@
#include <stdio.h>
#include "node.h"
#include "buffer.h"
+#include "memory.h"
#ifdef __cplusplus
extern "C" {
@@ -12,6 +13,7 @@ extern "C" {
#define MAX_LINK_LABEL_LENGTH 1000
struct cmark_parser {
+ struct cmark_mem *mem;
struct cmark_reference_map *refmap;
struct cmark_node *root;
struct cmark_node *current;