| 589 | |
| 590 | |
| 591 | static void prepstate (MatchState *ms, lua_State *L, |
| 592 | const char *s, size_t ls, const char *p, size_t lp) { |
| 593 | ms->L = L; |
| 594 | ms->matchdepth = MAXCCALLS; |
| 595 | ms->src_init = s; |
| 596 | ms->src_end = s + ls; |
| 597 | ms->p_end = p + lp; |
| 598 | } |
| 599 | |
| 600 | |
| 601 | static void reprepstate (MatchState *ms) { |
no outgoing calls
no test coverage detected