diff options
author | Nick Wellnhofer <[email protected]> | 2014-11-17 21:33:57 +0100 |
---|---|---|
committer | John MacFarlane <[email protected]> | 2014-11-17 21:43:47 -0800 |
commit | 3554759dbe4a0cb937556226d621bb71efd188e7 (patch) | |
tree | d589459a498e7edae3f25f00860ba02d2e7c4edb /src/ast.h | |
parent | 2c7b83042fea3c970e5b1a1914880bc60acf6174 (diff) |
Rename ast.h to parser.h
Diffstat (limited to 'src/ast.h')
-rw-r--r-- | src/ast.h | 29 |
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 |