summaryrefslogtreecommitdiff
path: root/src/rax.h
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2017-08-30 12:40:27 +0200
committerantirez <antirez@gmail.com>2017-12-01 10:24:24 +0100
commit79866a6361829ed0602dedff9cb378c66977227a (patch)
tree394042e4d08ba6563f674c87a314a045382d87c8 /src/rax.h
parent045d65c3af460a71d2b89b84f5e0b85d98320a77 (diff)
downloadredis-79866a6361829ed0602dedff9cb378c66977227a.tar.gz
Streams: 12 commits squashed into the initial Streams implementation.
Diffstat (limited to 'src/rax.h')
-rw-r--r--src/rax.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rax.h b/src/rax.h
index 6f91f4c1b..f6985c373 100644
--- a/src/rax.h
+++ b/src/rax.h
@@ -155,6 +155,7 @@ int raxPrev(raxIterator *it);
int raxRandomWalk(raxIterator *it, size_t steps);
int raxCompare(raxIterator *iter, const char *op, unsigned char *key, size_t key_len);
void raxStop(raxIterator *it);
+int raxEOF(raxIterator *it);
void raxShow(rax *rax);
#endif