| 255 | } |
| 256 | |
| 257 | char *redisProtocolToLuaType_Bool(lua_State *lua, char *reply, int tf) { |
| 258 | char *p = strchr(reply+1,'\r'); |
| 259 | lua_pushboolean(lua,tf == 't'); |
| 260 | return p+2; |
| 261 | } |
| 262 | |
| 263 | char *redisProtocolToLuaType_Double(lua_State *lua, char *reply) { |
| 264 | char *p = strchr(reply+1,'\r'); |
no test coverage detected