| 1197 | } |
| 1198 | |
| 1199 | const char *RedisProtocolToLuaTypeNull(lua_State *lua, const char *reply) { |
| 1200 | const char *p = strchr(reply + 1, '\r'); |
| 1201 | lua_pushnil(lua); |
| 1202 | return p + 2; |
| 1203 | } |
| 1204 | |
| 1205 | const char *RedisProtocolToLuaTypeBool(lua_State *lua, const char *reply, int tf) { |
| 1206 | const char *p = strchr(reply + 1, '\r'); |
no outgoing calls
no test coverage detected