| 232 | |
| 233 | |
| 234 | static void aux_lines (lua_State *L, int idx, int toclose) { |
| 235 | lua_pushvalue(L, idx); |
| 236 | lua_pushboolean(L, toclose); /* close/not close file when finished */ |
| 237 | lua_pushcclosure(L, io_readline, 2); |
| 238 | } |
| 239 | |
| 240 | |
| 241 | static int f_lines (lua_State *L) { |
no test coverage detected