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

Function str_len

Source/Misc/lua/src/lua.c:13705–13710  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13703
13704
13705static int str_len (lua_State *L) {
13706size_t l;
13707luaL_checklstring(L, 1, &l);
13708lua_pushinteger(L, l);
13709return 1;
13710}
13711
13712
13713static ptrdiff_t posrelat (ptrdiff_t pos, size_t len) {

Callers

nothing calls this directly

Calls 2

luaL_checklstringFunction · 0.85
lua_pushintegerFunction · 0.85

Tested by

no test coverage detected