added ZSTDMT_createCCtx_advanced()
make it possible to use custom allocators
diff --git a/doc/zstd_manual.html b/doc/zstd_manual.html
index 360a6e7..2c66409 100644
--- a/doc/zstd_manual.html
+++ b/doc/zstd_manual.html
@@ -338,6 +338,8 @@
<h3>Custom memory allocation functions</h3><pre></pre><b><pre>typedef void* (*ZSTD_allocFunction) (void* opaque, size_t size);
typedef void (*ZSTD_freeFunction) (void* opaque, void* address);
typedef struct { ZSTD_allocFunction customAlloc; ZSTD_freeFunction customFree; void* opaque; } ZSTD_customMem;
+</b>/* use this constant to defer to stdlib's functions */<b>
+static const ZSTD_customMem ZSTD_defaultCMem = { NULL, NULL, NULL};
</pre></b><BR>
<a name="Chapter12"></a><h2>Frame size functions</h2><pre></pre>