(line: str)
| 60 | return line.strip().startswith("#endif") |
| 61 | |
| 62 | def is_ifndef(line: str) -> bool: |
| 63 | return line.strip().startswith("#ifndef") |
| 64 | |
| 65 | # Strips the given line from // and /* */ blocks |
| 66 | def strip_comments(line: str) -> str: |
no outgoing calls
no test coverage detected