diff options
author | Vicent Marti <tanoku@gmail.com> | 2016-06-06 11:47:36 +0200 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2016-06-06 15:39:06 -0700 |
commit | cea908d84fee8daa1da8c6eeec0767dcbc543088 (patch) | |
tree | 69b57c0e32e34c452d51c416dda2999cc123ea8b /src/cmark.h | |
parent | fc1299a51ede05b3a76ae2f5a3ce882741a43a8b (diff) |
mem: Rename the new APIs
Diffstat (limited to 'src/cmark.h')
-rw-r--r-- | src/cmark.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cmark.h b/src/cmark.h index e7d39ec..785b254 100644 --- a/src/cmark.h +++ b/src/cmark.h @@ -115,7 +115,7 @@ CMARK_EXPORT cmark_node *cmark_node_new(cmark_node_type type); /** Same as `cmark_node_new`, but explicitly listing the memory * allocator used to allocate the node */ -CMARK_EXPORT cmark_node *cmark_node_new2(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. */ @@ -460,7 +460,7 @@ cmark_parser *cmark_parser_new(int options); /** Creates a new parser object with the given memory allocator */ CMARK_EXPORT -cmark_parser *cmark_parser_new2(int options, cmark_mem *mem); +cmark_parser *cmark_parser_new_with_mem(int options, cmark_mem *mem); /** Frees memory allocated for a parser object. */ |