| 1542 | } |
| 1543 | |
| 1544 | static int memory_readbyte(lua_State *L) { |
| 1545 | lua_pushinteger(L, GetMem(luaL_checkinteger(L,1))); |
| 1546 | return 1; |
| 1547 | } |
| 1548 | |
| 1549 | static int memory_readbytesigned(lua_State *L) { |
| 1550 | signed char c = (signed char) GetMem(luaL_checkinteger(L,1)); |
nothing calls this directly
no test coverage detected