summaryrefslogtreecommitdiff
path: root/hiredis.h
diff options
context:
space:
mode:
authorPieter Noordhuis <pcnoordhuis@gmail.com>2010-09-20 15:26:18 +0200
committerPieter Noordhuis <pcnoordhuis@gmail.com>2010-09-20 15:26:18 +0200
commitb1fa529cf973247ba79f23b1b5c9249582fc1bfe (patch)
treeb249cfadf90d3be67eb5a5f92d7924c50cfd58a2 /hiredis.h
parente944ea366225d4a925cd3cd6ab927fa671ba6f1d (diff)
Add function to check if the reply reader is empty
Diffstat (limited to 'hiredis.h')
-rw-r--r--hiredis.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/hiredis.h b/hiredis.h
index 85fc540..482072e 100644
--- a/hiredis.h
+++ b/hiredis.h
@@ -54,6 +54,7 @@ void freeReplyObject(redisReply *r);
redisReply *redisCommand(int fd, const char *format, ...);
void *redisCreateReplyReader();
void redisFreeReplyReader(void *ptr);
+int redisIsReplyReaderEmpty(void *ptr);
void *redisFeedReplyReader(void *reader, char *buf, int len);
#endif