| 249 | } |
| 250 | |
| 251 | char *redisProtocolToLuaType_Null(lua_State *lua, char *reply) { |
| 252 | char *p = strchr(reply+1,'\r'); |
| 253 | lua_pushnil(lua); |
| 254 | return p+2; |
| 255 | } |
| 256 | |
| 257 | char *redisProtocolToLuaType_Bool(lua_State *lua, char *reply, int tf) { |
| 258 | char *p = strchr(reply+1,'\r'); |
no test coverage detected