| 755 | |
| 756 | |
| 757 | static void prepstate (MatchState *ms, lua_State *L, |
| 758 | const char *s, size_t ls, const char *p, size_t lp) { |
| 759 | ms->L = L; |
| 760 | ms->matchdepth = MAXCCALLS; |
| 761 | ms->src_init = s; |
| 762 | ms->src_end = s + ls; |
| 763 | ms->p_end = p + lp; |
| 764 | } |
| 765 | |
| 766 | |
| 767 | static void reprepstate (MatchState *ms) { |
no outgoing calls
no test coverage detected