| 677 | |
| 678 | |
| 679 | static int str_gmatch (lua_State *L) { |
| 680 | luaL_checkstring(L, 1); |
| 681 | luaL_checkstring(L, 2); |
| 682 | lua_settop(L, 2); |
| 683 | lua_pushinteger(L, 0); |
| 684 | lua_pushcclosure(L, gmatch_aux, 3); |
| 685 | return 1; |
| 686 | } |
| 687 | |
| 688 | |
| 689 | static void add_s (MatchState *ms, luaL_Buffer *b, const char *s, |
nothing calls this directly
no test coverage detected