| 162 | |
| 163 | |
| 164 | static int check_next (LexState *ls, const char *set) { |
| 165 | if (!strchr(set, ls->current)) |
| 166 | return 0; |
| 167 | save_and_next(ls); |
| 168 | return 1; |
| 169 | } |
| 170 | |
| 171 | |
| 172 | static void buffreplace (LexState *ls, char from, char to) { |
no test coverage detected