| 850 | |
| 851 | |
| 852 | LUALIB_API int luaL_loadstring (lua_State *L, const char *s) { |
| 853 | return luaL_loadbuffer(L, s, strlen(s), s); |
| 854 | } |
| 855 | |
| 856 | /* }====================================================== */ |
| 857 |
nothing calls this directly
no test coverage detected