| 13703 | |
| 13704 | |
| 13705 | static int str_len (lua_State *L) { |
| 13706 | size_t l; |
| 13707 | luaL_checklstring(L, 1, &l); |
| 13708 | lua_pushinteger(L, l); |
| 13709 | return 1; |
| 13710 | } |
| 13711 | |
| 13712 | |
| 13713 | static ptrdiff_t posrelat (ptrdiff_t pos, size_t len) { |
nothing calls this directly
no test coverage detected