more resources for C language style guides.

This commit is contained in:
2025-10-21 20:01:40 +00:00
parent 05a78e6b1e
commit 51a586a618

View File

@@ -20,3 +20,8 @@ $ pip install -e .
- The [Black](https://pypi.org/project/black/#description) Python code style checker / enforcer.
- The Mathworks' [MATLAB Style Guide](https://www.mathworks.com/matlabcentral/fileexchange/46056-matlab-style-guidelines-2-0)
- A community-maintained [Style Guide for MATLAB](https://sites.google.com/site/matlabstyleguidelines/home)
## For the C Language
- [Google C++ Style Guide](https://google.github.io/styleguide/cppguide.html)
- [`cpplint`](https://github.com/cpplint/cpplint) is a style _linter_ for C that checks against the Google C++ Style Guide.
- [LLVM Code Style Guide](https://llvm.org/docs/CodingStandards.html)
- [`clang-tidy`](https://clang.llvm.org/extra/clang-tidy/) Can be configured to a variety of code styles.