(path: str, content: str)
| 18 | |
| 19 | |
| 20 | def _make_fc(path: str, content: str) -> FileContent: |
| 21 | return FileContent(path=path, content=content, lines=content.splitlines()) |
| 22 | |
| 23 | |
| 24 | def _check(content: str, path: str = "src/fl/test.h") -> list[tuple[int, str]]: |