MCPcopy Create free account
hub / github.com/Snapchat/KeyDB / lua_pushstring

Function lua_pushstring

deps/lua/src/lapi.c:454–459  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

452
453
454LUA_API void lua_pushstring (lua_State *L, const char *s) {
455 if (s == NULL)
456 lua_pushnil(L);
457 else
458 lua_pushlstring(L, s, strlen(s));
459}
460
461
462LUA_API const char *lua_pushvfstring (lua_State *L, const char *fmt,

Callers 15

luaPushErrorFunction · 0.85
luaRaiseErrorFunction · 0.85
luaSortArrayFunction · 0.85
luaReplyToRedisReplyFunction · 0.85
luaRedisSha1hexCommandFunction · 0.85
luaRedisSetReplCommandFunction · 0.85
luaLogCommandFunction · 0.85

Calls 2

lua_pushnilFunction · 0.85
lua_pushlstringFunction · 0.85

Tested by

no test coverage detected