(input_path: Path, output_path: Path)
| 42 | |
| 43 | |
| 44 | def api_generate(input_path: Path, output_path: Path): |
| 45 | with open(output_path, 'w') as f: |
| 46 | f.write(clang_format(api.run(input_path))) |
| 47 | |
| 48 | |
| 49 | def te_generate(input_path: Path, output_path: Path): |
no test coverage detected