| 666 | |
| 667 | |
| 668 | static int gmatch (lua_State *L) { |
| 669 | luaL_checkstring(L, 1); |
| 670 | luaL_checkstring(L, 2); |
| 671 | lua_settop(L, 2); |
| 672 | lua_pushinteger(L, 0); |
| 673 | lua_pushcclosure(L, gmatch_aux, 3); |
| 674 | return 1; |
| 675 | } |
| 676 | |
| 677 | |
| 678 | static void add_s (MatchState *ms, luaL_Buffer *b, const char *s, |
nothing calls this directly
no test coverage detected