| 572 | |
| 573 | |
| 574 | static int gmatch (lua_State *L) { |
| 575 | luaL_checkstring(L, 1); |
| 576 | luaL_checkstring(L, 2); |
| 577 | lua_settop(L, 2); |
| 578 | lua_pushinteger(L, 0); |
| 579 | lua_pushcclosure(L, gmatch_aux, 3); |
| 580 | return 1; |
| 581 | } |
| 582 | |
| 583 | |
| 584 | static int gfind_nodef (lua_State *L) { |
nothing calls this directly
no test coverage detected