diff options
Diffstat (limited to 'src/cmark.h')
-rw-r--r-- | src/cmark.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/cmark.h b/src/cmark.h index 3543c82..d5b7f89 100644 --- a/src/cmark.h +++ b/src/cmark.h @@ -95,12 +95,11 @@ typedef struct cmark_iter cmark_iter; * when parsing and allocating a document tree */ typedef struct cmark_mem { - void *(*calloc)(size_t, size_t); - void *(*realloc)(void *, size_t); - void (*free)(void *); + void *(*calloc)(size_t, size_t); + void *(*realloc)(void *, size_t); + void (*free)(void *); } cmark_mem; - /** * ## Creating and Destroying Nodes */ @@ -115,7 +114,8 @@ CMARK_EXPORT cmark_node *cmark_node_new(cmark_node_type type); * allocator used to allocate the node. Note: be sure to use the same * allocator for every node in a tree, or bad things can happen. */ -CMARK_EXPORT cmark_node *cmark_node_new_with_mem(cmark_node_type type, cmark_mem *mem); +CMARK_EXPORT cmark_node *cmark_node_new_with_mem(cmark_node_type type, + cmark_mem *mem); /** Frees the memory allocated for a node and any children. */ |