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