From c9bad4c17e8093124e31a87d4eba46c28ff1ef92 Mon Sep 17 00:00:00 2001 From: Loris Cro Date: Thu, 13 Jun 2019 15:57:11 +0200 Subject: [PATCH] Update README.md --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 499373a..6a2d041 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,12 @@ operates at the same abstraction level (i.e. no gc, explicit memory management, pointers, etc). Zig can compile C code and Zig shared object files can be used in a normal C compilation process. - +### It doesn't manage memory +All memory allocation/freeing is done by the caller. This makes this library suitable +for embedding in any kind of ecosystem. For example, take a look at + [kristoff-it/redis-cuckoofilter](https://github.com/kristoff-it/redis-cuckoofilter). + + Using zig-cuckoofilter from C or other languages (Python, Go, JavaScript, ...) ------------------------------------------------------------------------------