Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpredis/phpredis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormichael-grunder <michael.grunder@gmail.com>2017-04-28 18:23:13 +0300
committermichael-grunder <michael.grunder@gmail.com>2017-04-28 18:23:13 +0300
commit5d35acd246fe19c11b5f601a9147b390632beb82 (patch)
tree814943ec27599e50dc6968238c52d2c708dbf8a9 /library.h
parent0970ddef039c8c4e9cd753d4d1814204f36467e9 (diff)
Remove redis_cmd_append_str and redis_cmd_append_int
Diffstat (limited to 'library.h')
-rw-r--r--library.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/library.h b/library.h
index b002bd2a..589e7441 100644
--- a/library.h
+++ b/library.h
@@ -15,12 +15,10 @@
int integer_length(int i);
int redis_cmd_format_static(char **ret, char *keyword, char *format, ...);
-int redis_cmd_append_str(char **cmd, int cmd_len, char *append, int append_len);
int redis_cmd_init_sstr(smart_string *str, int num_args, char *keyword, int keyword_len);
int redis_cmd_append_sstr(smart_string *str, char *append, int append_len);
int redis_cmd_append_sstr_int(smart_string *str, int append);
int redis_cmd_append_sstr_long(smart_string *str, long append);
-int redis_cmd_append_int(char **cmd, int cmd_len, int append);
int redis_cmd_append_sstr_dbl(smart_string *str, double value);
int redis_cmd_append_sstr_zval(smart_string *str, zval *z, RedisSock *redis_sock TSRMLS_DC);
int redis_cmd_append_sstr_key(smart_string *str, char *key, strlen_t len, RedisSock *redis_sock, short *slot);