MCPcopy Create free account
hub / github.com/EmmyLua/EmmyLuaDebugger / str_len

Function str_len

third-party/lua-5.5.0/src/lstrlib.c:40–45  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

38
39
40static int str_len (lua_State *L) {
41 size_t l;
42 luaL_checklstring(L, 1, &l);
43 lua_pushinteger(L, (lua_Integer)l);
44 return 1;
45}
46
47
48/*

Callers

nothing calls this directly

Calls 2

luaL_checklstringFunction · 0.70
lua_pushintegerFunction · 0.70

Tested by

no test coverage detected