summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2014-12-13 21:36:28 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2014-12-13 21:36:28 -0800
commitf1d577ab3d801a060befae5b88c489f9b0cda3ed (patch)
tree6005682640fe43607d53b4d97483556cee80df67 /src
parent04d69ec29fbbefbfbafbfc1050a48cf97a513f19 (diff)
Removed cmark_node_handler - it was used by cmark_walk, now deleted.
Diffstat (limited to 'src')
-rw-r--r--src/cmark.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/cmark.h b/src/cmark.h
index 84515fc..85dffa4 100644
--- a/src/cmark.h
+++ b/src/cmark.h
@@ -32,8 +32,6 @@ char *cmark_markdown_to_html(const char *text, int len);
/** ## Node Structure
*/
-/**
- */
typedef enum {
/* Error status */
CMARK_NODE_NONE,
@@ -68,16 +66,12 @@ typedef enum {
} cmark_node_type;
-/**
- */
typedef enum {
CMARK_NO_LIST,
CMARK_BULLET_LIST,
CMARK_ORDERED_LIST
} cmark_list_type;
-/**
- */
typedef enum {
CMARK_PERIOD_DELIM,
CMARK_PAREN_DELIM
@@ -93,9 +87,6 @@ typedef enum {
CMARK_EVENT_EXIT
} cmark_event_type;
-typedef int (*cmark_node_handler)(cmark_node *node, cmark_event_type ev_type,
- void *state);
-
/**
* ## Creating and Destroying Nodes
*/