gpt4 book ai didi

c - GNU 代码风格的 GNU 缩进问题

转载 作者:太空狗 更新时间:2023-10-29 15:34:58 25 4
gpt4 key购买 nike

我安装了 indent使用 brew感谢命令 brew install gnu-indent所以现在我有 gnu-indent-2.2.10到目前为止安装在我的 MacOS X 上,非常好。我的问题是当我想使用 GNU 缩进文件时代码风格。

我的意思是我想转换这个:

while (foo) {
}

进入这个:

while (foo) 
{
}

所以根据文档我启动了 indent使用参数 -bl -bli2为了使 GNU 代码样式具有 2 个空格,大括号被缩进,但我实际得到的是:

while (foo) 
{
}

就像,我用了-bl -bli0不管我在 -bli 之后放什么,我得到了相同的结果。

换句话说,假设 test.c 的内容是:

while (foo) {
}

如果我启动 indent test.c -st -bl -bli2 > test.out , test.out然后在我身边:

while (foo)
{
}

我是不是遗漏了什么,或者这是 GNU indent 中的错误? ?

更新:

它似乎是 Mac OS X相关,因为它在 Debian 8 上按预期工作与 GNU indent 2.2.11Ubuntu 14.04GNU indent 2.2.112.2.10-2 .

最佳答案

我终于意识到我没有使用来自brew的indent版本,而是来自XCode,问题来自于XCode的版本这不像 GNU indent 那样工作。如果我使用 gindent 而不是 indent 启动相同的命令,它会按预期工作。我的意思是,如果我启动 gindent test.c -st -bl -bli2 > test.out,我会得到预期的结果:

while (foo)
{
}

关于c - GNU 代码风格的 GNU 缩进问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37346707/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com