summaryrefslogtreecommitdiff
path: root/hiredis.c
diff options
context:
space:
mode:
authorAxel Etcheverry <euskadi31@gmail.com>2013-11-14 01:59:35 +0100
committerMatt Stancliff <matt@genges.com>2014-04-09 17:02:42 -0400
commit66192a0052ec3f9936099a4d2c5512b4b0d89bf0 (patch)
tree6b16c54137f6644fab9cb1b20d5168eaefda3156 /hiredis.c
parentf20f5ad10264a10d41aa2a47c029fba71820d62a (diff)
Add new redisAppendFormatedCommand with tests
Closes #202
Diffstat (limited to 'hiredis.c')
-rw-r--r--hiredis.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/hiredis.c b/hiredis.c
index dcb13a5..b254903 100644
--- a/hiredis.c
+++ b/hiredis.c
@@ -1257,6 +1257,15 @@ int __redisAppendCommand(redisContext *c, char *cmd, size_t len) {
return REDIS_OK;
}
+int redisAppendFormattedCommand(redisContext *c, char *format, size_t len) {
+
+ if (__redisAppendCommand(c, format, len) != REDIS_OK) {
+ return REDIS_ERR;
+ }
+
+ return REDIS_OK;
+}
+
int redisvAppendCommand(redisContext *c, const char *format, va_list ap) {
char *cmd;
int len;