| 1203 | } |
| 1204 | |
| 1205 | const char *RedisProtocolToLuaTypeBool(lua_State *lua, const char *reply, int tf) { |
| 1206 | const char *p = strchr(reply + 1, '\r'); |
| 1207 | lua_pushboolean(lua, tf == 't'); |
| 1208 | return p + 2; |
| 1209 | } |
| 1210 | |
| 1211 | const char *RedisProtocolToLuaTypeDouble(lua_State *lua, const char *reply) { |
| 1212 | const char *p = strchr(reply + 1, '\r'); |
no outgoing calls
no test coverage detected