From fc1299a51ede05b3a76ae2f5a3ce882741a43a8b Mon Sep 17 00:00:00 2001 From: Vicent Marti Date: Mon, 6 Jun 2016 11:45:47 +0200 Subject: mem: Add a `realloc` pointer to the memory handler --- man/man3/cmark.3 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'man') diff --git a/man/man3/cmark.3 b/man/man3/cmark.3 index ca304e6..ec4e031 100644 --- a/man/man3/cmark.3 +++ b/man/man3/cmark.3 @@ -1,4 +1,4 @@ -.TH cmark 3 "June 02, 2016" "LOCAL" "Library Functions Manual" +.TH cmark 3 "June 06, 2016" "LOCAL" "Library Functions Manual" .SH NAME .PP @@ -104,6 +104,7 @@ Custom memory allocator support .RS 0n typedef struct cmark_mem { void *(*calloc)(size_t, size_t); + void *(*realloc)(void *, size_t); void (*free)(void *); } cmark_mem; .RE -- cgit v1.2.3