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