| 316 | } |
| 317 | |
| 318 | LUA_API int xlua_getglobal (lua_State *L, const char *name) { |
| 319 | lua_pushcfunction(L, c_lua_getglobal); |
| 320 | lua_pushstring(L, name); |
| 321 | return lua_pcall(L, 1, 1, 0); |
| 322 | } |
| 323 | |
| 324 | static int c_lua_setglobal(lua_State* L) { |
| 325 | lua_setglobal(L, lua_tostring(L, 1)); |
nothing calls this directly
no test coverage detected