| 545 | |
| 546 | |
| 547 | LUALIB_API int luaL_loadstring (lua_State *L, const char *s) { |
| 548 | return luaL_loadbuffer(L, s, strlen(s), s); |
| 549 | } |
| 550 | |
| 551 | /* }====================================================== */ |
| 552 |
nothing calls this directly
no test coverage detected