| 105 | |
| 106 | |
| 107 | static int luaB_rawequal (lua_State *L) { |
| 108 | luaL_checkany(L, 1); |
| 109 | luaL_checkany(L, 2); |
| 110 | lua_pushboolean(L, lua_rawequal(L, 1, 2)); |
| 111 | return 1; |
| 112 | } |
| 113 | |
| 114 | |
| 115 | static int luaB_rawlen (lua_State *L) { |
nothing calls this directly
no test coverage detected