summaryrefslogtreecommitdiff
path: root/src/ast.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ast.h')
-rw-r--r--src/ast.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/ast.h b/src/ast.h
deleted file mode 100644
index c1636de..0000000
--- a/src/ast.h
+++ /dev/null
@@ -1,29 +0,0 @@
-#ifndef CMARK_AST_H
-#define CMARK_AST_H
-
-#include <stdio.h>
-#include "config.h"
-#include "node.h"
-#include "buffer.h"
-#include "chunk.h"
-#include "cmark.h"
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#define MAX_LINK_LABEL_LENGTH 1000
-
-struct cmark_doc_parser {
- struct cmark_reference_map *refmap;
- struct cmark_node* root;
- struct cmark_node* current;
- int line_number;
- cmark_strbuf *curline;
-};
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif