| 142 | |
| 143 | |
| 144 | static int dolibrary (lua_State *L, const char *name) { |
| 145 | lua_getglobal(L, "require"); |
| 146 | lua_pushstring(L, name); |
| 147 | return report(L, docall(L, 1, 1)); |
| 148 | } |
| 149 | |
| 150 | |
| 151 | static const char *get_prompt (lua_State *L, int firstline) { |
no test coverage detected