使用Astyle格式化代码

Posted elseliving

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Astyle格式化代码相关的知识,希望对你有一定的参考价值。

在github中clone了nanomsghttps://github.com/davidmpc/nanomsg.git的源代码,发现代码是google风格,即for、if后大括号没有另起一行,十分不习惯,因此需要改变代码格式。

参考http://blog.csdn.net/i_am_tom/article/details/54375266,在sourceforgehttps://sourceforge.net/projects/astyle/?source=typ_redirect中下载了macos的Astyle的代码,进入build文件夹。

[email protected]:~/software/astyle$ls

 

LICENSE.md README.md  build      doc        file       src

直接make,在bin中有Astyle的可执行文件。

执行如下命令,既可以让大括号另起一行、switch中case前有一个tab、对文件夹下所有的.c迭代格式化。

[email protected]:~/software/astyle/build/mac/bin$./AStyle --style=allman --indent-switches --recursive ../../../../../Documents/code/nanomsg/nanomsg/src/*.c

 

以上是关于使用Astyle格式化代码的主要内容,如果未能解决你的问题,请参考以下文章

使用Astyle格式化代码

c++代码格式化工具神器AStyle介绍

keil中使用Astyle格式化你的代码的方法2篇合

SourceInsight工具增强——AStyle(代码格式化)PC-Lint(静态检查)

Matlab代码格式类似于AStyle? [关闭]

Keil MDK中使用AStyle插件对代码格式美化处理