CodingStyle beautify by Using Astyle
C/C++工具:Astyle最简使用说明
- C/C++代码格式化工具,也可以格式化Java与C#:
astyle --style=kr --max-code-length=80 *.cpp
- 格式化时,排除第三方源文件:
astyle --style=风格 -r "*.cpp" "*.h" --exclude=3rdparty
-
Ref:
astyle --style=kr --max-code-length=80 *.cpp
astyle --style=风格 -r "*.cpp" "*.h" --exclude=3rdparty