summaryrefslogtreecommitdiff
path: root/src/redis.h
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2014-02-27 12:40:58 +0100
committerantirez <antirez@gmail.com>2014-02-27 12:44:27 +0100
commit38c620b3b5676281463ab155e2447889f984b44f (patch)
tree0bc8de3f9b02065425819cfbefe6becd11ec8171 /src/redis.h
parentaddd4de9c1886f683b9f5220b5ada15ea3312d3b (diff)
downloadredis-38c620b3b5676281463ab155e2447889f984b44f.tar.gz
Initial implementation of BITPOS.
It appears to work but more stress testing, and both unit tests and fuzzy testing, is needed in order to ensure the implementation is sane.
Diffstat (limited to 'src/redis.h')
-rw-r--r--src/redis.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/redis.h b/src/redis.h
index 618dfac43..c09d410e6 100644
--- a/src/redis.h
+++ b/src/redis.h
@@ -1420,6 +1420,7 @@ void scriptCommand(redisClient *c);
void timeCommand(redisClient *c);
void bitopCommand(redisClient *c);
void bitcountCommand(redisClient *c);
+void bitposCommand(redisClient *c);
void replconfCommand(redisClient *c);
void waitCommand(redisClient *c);