gitextract_hw75i0ju/ ├── .github/ │ └── workflows/ │ ├── python-package-develop.yml │ ├── python-package.yml │ └── python-publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── c_formatter_42/ │ ├── __init__.py │ ├── __main__.py │ ├── data/ │ │ ├── .clang-format │ │ ├── __init__.py │ │ ├── clang-format-darwin │ │ ├── clang-format-darwin-arm64 │ │ └── clang-format-linux │ ├── formatters/ │ │ ├── __init__.py │ │ ├── align.py │ │ ├── clang_format.py │ │ ├── helper.py │ │ ├── hoist.py │ │ ├── line_breaker.py │ │ ├── misc.py │ │ ├── preprocessor_directive.py │ │ └── return_type_single_tab.py │ └── run.py ├── docs/ │ ├── Makefile │ ├── make.bat │ └── source/ │ ├── conf.py │ └── index.rst ├── requirements-dev.txt ├── setup.cfg ├── setup.py ├── tests/ │ ├── formatters/ │ │ ├── test_align.py │ │ ├── test_clang_format.py │ │ ├── test_hoist.py │ │ ├── test_line_breaker.py │ │ ├── test_misc.py │ │ ├── test_preprocessor_directive.py │ │ └── test_return_type_single_tab.py │ └── test_run.py └── tox.ini