summaryrefslogtreecommitdiff
path: root/examples/redis-unstable/src/zipmap.h
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2026-01-21 22:52:54 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2026-01-21 22:52:54 +0100
commitdcacc00e3750300617ba6e16eb346713f91a783a (patch)
tree38e2d4fb5ed9d119711d4295c6eda4b014af73fd /examples/redis-unstable/src/zipmap.h
parent58dac10aeb8f5a041c46bddbeaf4c7966a99b998 (diff)
downloadcrep-dcacc00e3750300617ba6e16eb346713f91a783a.tar.gz
Remove testing data
Diffstat (limited to 'examples/redis-unstable/src/zipmap.h')
-rw-r--r--examples/redis-unstable/src/zipmap.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/examples/redis-unstable/src/zipmap.h b/examples/redis-unstable/src/zipmap.h
deleted file mode 100644
index a3e7aea..0000000
--- a/examples/redis-unstable/src/zipmap.h
+++ /dev/null
@@ -1,34 +0,0 @@
-/* String -> String Map data structure optimized for size.
- *
- * See zipmap.c for more info.
- *
- * --------------------------------------------------------------------------
- *
- * Copyright (c) 2009-Present, Redis Ltd.
- * All rights reserved.
- *
- * Licensed under your choice of (a) the Redis Source Available License 2.0
- * (RSALv2); or (b) the Server Side Public License v1 (SSPLv1); or (c) the
- * GNU Affero General Public License v3 (AGPLv3).
- */
-
-#ifndef _ZIPMAP_H
-#define _ZIPMAP_H
-
-unsigned char *zipmapNew(void);
-unsigned char *zipmapSet(unsigned char *zm, unsigned char *key, unsigned int klen, unsigned char *val, unsigned int vlen, int *update);
-unsigned char *zipmapDel(unsigned char *zm, unsigned char *key, unsigned int klen, int *deleted);
-unsigned char *zipmapRewind(unsigned char *zm);
-unsigned char *zipmapNext(unsigned char *zm, unsigned char **key, unsigned int *klen, unsigned char **value, unsigned int *vlen);
-int zipmapGet(unsigned char *zm, unsigned char *key, unsigned int klen, unsigned char **value, unsigned int *vlen);
-int zipmapExists(unsigned char *zm, unsigned char *key, unsigned int klen);
-unsigned int zipmapLen(unsigned char *zm);
-size_t zipmapBlobLen(unsigned char *zm);
-void zipmapRepr(unsigned char *p);
-int zipmapValidateIntegrity(unsigned char *zm, size_t size, int deep);
-
-#ifdef REDIS_TEST
-int zipmapTest(int argc, char *argv[], int flags);
-#endif
-
-#endif