| 150 | } |
| 151 | |
| 152 | LUALIB_API int luaL_loadstring(lua_State *L, const char *s) |
| 153 | { |
| 154 | return luaL_loadbuffer(L, s, strlen(s), s); |
| 155 | } |
| 156 | |
| 157 | /* -- Dump bytecode ------------------------------------------------------- */ |
| 158 |
nothing calls this directly
no test coverage detected