| 26 | |
| 27 | |
| 28 | static int str_len (lua_State *L) { |
| 29 | size_t l; |
| 30 | luaL_checklstring(L, 1, &l); |
| 31 | lua_pushinteger(L, l); |
| 32 | return 1; |
| 33 | } |
| 34 | |
| 35 | |
| 36 | static ptrdiff_t posrelat (ptrdiff_t pos, size_t len) { |
nothing calls this directly
no test coverage detected