lua_getglobal method

int lua_getglobal(
  1. Pointer<lua_State> L,
  2. Pointer<Char> name
)

Implementation

int lua_getglobal(
  ffi.Pointer<lua_State> L,
  ffi.Pointer<ffi.Char> name,
) {
  return _lua_getglobal(
    L,
    name,
  );
}