MCPcopy Create free account
hub / github.com/RomanKubiak/ctrlr / getboolfield

Function getboolfield

Source/Misc/lua/src/lua.c:13534–13540  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13532}
13533
13534static int getboolfield (lua_State *L, const char *key) {
13535int res;
13536lua_getfield(L, -1, key);
13537res = lua_isnil(L, -1) ? -1 : lua_toboolean(L, -1);
13538lua_pop(L, 1);
13539return res;
13540}
13541
13542
13543static int getfield (lua_State *L, const char *key, int d) {

Callers 1

os_timeFunction · 0.85

Calls 2

lua_getfieldFunction · 0.85
lua_tobooleanFunction · 0.85

Tested by

no test coverage detected