summaryrefslogtreecommitdiff
path: root/src/ast.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ast.h')
-rw-r--r--src/ast.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/ast.h b/src/ast.h
index bd9b342..c1636de 100644
--- a/src/ast.h
+++ b/src/ast.h
@@ -12,25 +12,8 @@
extern "C" {
#endif
-#define REFMAP_SIZE 16
#define MAX_LINK_LABEL_LENGTH 1000
-struct cmark_reference {
- struct cmark_reference *next;
- unsigned char *label;
- unsigned char *url;
- unsigned char *title;
- unsigned int hash;
-};
-
-typedef struct cmark_reference cmark_reference;
-
-struct cmark_reference_map {
- cmark_reference *table[REFMAP_SIZE];
-};
-
-typedef struct cmark_reference_map cmark_reference_map;
-
struct cmark_doc_parser {
struct cmark_reference_map *refmap;
struct cmark_node* root;