Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
40
static 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_checklstring
Function · 0.70
lua_pushinteger
Function · 0.70
Tested by
no test coverage detected