| 596 | |
| 597 | |
| 598 | static void prepstate (MatchState *ms, lua_State *L, |
| 599 | const char *s, size_t ls, const char *p, size_t lp) { |
| 600 | ms->L = L; |
| 601 | ms->matchdepth = MAXCCALLS; |
| 602 | ms->src_init = s; |
| 603 | ms->src_end = s + ls; |
| 604 | ms->p_end = p + lp; |
| 605 | } |
| 606 | |
| 607 | |
| 608 | static void reprepstate (MatchState *ms) { |
no outgoing calls
no test coverage detected