@@ -22,7 +22,7 @@ typedef struct subscribeContext {
2222} subscribeContext ;
2323
2424/* Construct a raw command */
25- int redis_build_raw_cmd (zval * * z_args , int argc , char * * cmd , int * cmd_len TSRMLS_DC );
25+ int redis_build_raw_cmd (zval * z_args , int argc , char * * cmd , int * cmd_len TSRMLS_DC );
2626
2727/* Redis command generics. Many commands share common prototypes meaning that
2828 * we can write one function to handle all of them. For example, there are
@@ -44,7 +44,7 @@ int redis_kv_cmd(INTERNAL_FUNCTION_PARAMETERS, RedisSock *redis_sock,
4444 char * kw , char * * cmd , int * cmd_len , short * slot , void * * ctx );
4545
4646int redis_key_str_cmd (INTERNAL_FUNCTION_PARAMETERS , RedisSock * redis_sock ,
47- char * kw , char * * cmd , int * cmd_len , short * slot , void * * ctx );
47+ char * kw , char * * cmd , int * cmd_len , short * slot , void * * ctx );
4848
4949int redis_key_key_cmd (INTERNAL_FUNCTION_PARAMETERS , RedisSock * redis_sock ,
5050 char * kw , char * * cmd , int * cmd_len , short * slot , void * * ctx );
@@ -79,11 +79,11 @@ typedef int (*zrange_cb)(INTERNAL_FUNCTION_PARAMETERS, RedisSock *redis_sock,
7979 char * ,char * * ,int * ,int * ,short * ,void * * );
8080
8181int redis_zrange_cmd (INTERNAL_FUNCTION_PARAMETERS , RedisSock * redis_sock ,
82- char * kw , char * * cmd , int * cmd_len , int * withscores , short * slot ,
82+ char * kw , char * * cmd , int * cmd_len , int * withscores , short * slot ,
8383 void * * ctx );
8484
8585int redis_zrangebyscore_cmd (INTERNAL_FUNCTION_PARAMETERS , RedisSock * redis_sock ,
86- char * kw , char * * cmd , int * cmd_len , int * withscores , short * slot ,
86+ char * kw , char * * cmd , int * cmd_len , int * withscores , short * slot ,
8787 void * * ctx );
8888
8989int redis_zinter_cmd (INTERNAL_FUNCTION_PARAMETERS , RedisSock * redis_sock ,
@@ -102,7 +102,7 @@ int redis_gen_zlex_cmd(INTERNAL_FUNCTION_PARAMETERS, RedisSock *redis_sock,
102102 char * kw , char * * cmd , int * cmd_len , short * slot , void * * ctx );
103103
104104/* Commands which need a unique construction mechanism. This is either because
105- * they don't share a signature with any other command, or because there is
105+ * they don't share a signature with any other command, or because there is
106106 * specific processing we do (e.g. verifying subarguments) that make them
107107 * unique */
108108
@@ -130,7 +130,7 @@ int redis_hmget_cmd(INTERNAL_FUNCTION_PARAMETERS, RedisSock *redis_sock,
130130int redis_hmset_cmd (INTERNAL_FUNCTION_PARAMETERS , RedisSock * redis_sock ,
131131 char * * cmd , int * cmd_len , short * slot , void * * ctx );
132132
133- int redis_bitop_cmd (INTERNAL_FUNCTION_PARAMETERS , RedisSock * redis_sock ,
133+ int redis_bitop_cmd (INTERNAL_FUNCTION_PARAMETERS , RedisSock * redis_sock ,
134134 char * * cmd , int * cmd_len , short * slot , void * * ctx );
135135
136136int redis_bitcount_cmd (INTERNAL_FUNCTION_PARAMETERS , RedisSock * redis_sock ,
@@ -224,20 +224,20 @@ int redis_command_cmd(INTERNAL_FUNCTION_PARAMETERS, RedisSock *redis_sock,
224224int redis_fmt_scan_cmd (char * * cmd , REDIS_SCAN_TYPE type , char * key , int key_len ,
225225 long it , char * pat , int pat_len , long count );
226226
227- /* Commands that don't communicate with Redis at all (such as getOption,
227+ /* Commands that don't communicate with Redis at all (such as getOption,
228228 * setOption, _prefix, _serialize, etc). These can be handled in one place
229- * with the method of grabbing our RedisSock* object in different ways
229+ * with the method of grabbing our RedisSock* object in different ways
230230 * depending if this is a Redis object or a RedisCluster object. */
231231
232- void redis_getoption_handler (INTERNAL_FUNCTION_PARAMETERS ,
232+ void redis_getoption_handler (INTERNAL_FUNCTION_PARAMETERS ,
233233 RedisSock * redis_sock , redisCluster * c );
234- void redis_setoption_handler (INTERNAL_FUNCTION_PARAMETERS ,
234+ void redis_setoption_handler (INTERNAL_FUNCTION_PARAMETERS ,
235235 RedisSock * redis_sock , redisCluster * c );
236- void redis_prefix_handler (INTERNAL_FUNCTION_PARAMETERS ,
236+ void redis_prefix_handler (INTERNAL_FUNCTION_PARAMETERS ,
237237 RedisSock * redis_sock );
238- void redis_serialize_handler (INTERNAL_FUNCTION_PARAMETERS ,
238+ void redis_serialize_handler (INTERNAL_FUNCTION_PARAMETERS ,
239239 RedisSock * redis_sock );
240- void redis_unserialize_handler (INTERNAL_FUNCTION_PARAMETERS ,
240+ void redis_unserialize_handler (INTERNAL_FUNCTION_PARAMETERS ,
241241 RedisSock * redis_sock , zend_class_entry * ex );
242242
243243#endif
0 commit comments