| 73 | return source->filename->ends_with(".c"); |
| 74 | } |
| 75 | void skip_until(Word64 syms) { |
| 76 | syms |= BIT(SymEOF); |
| 77 | while (!TEST(syms, input->at(pos).sym)) { |
| 78 | pos++; |
| 79 | } |
| 80 | } |
| 81 | void skip_while(Word64 syms) { |
| 82 | while (TEST(syms, input->at(pos).sym)) { |
| 83 | pos++; |
no test coverage detected