例如:
在 GNU Coding Standards 也有示范。
不算,不如说是C的注释只能这么写来着。
GNU Style 最大的体现的是它的花括号是这样的
if (true)
{
// do
}
C语言注释基本都是这样啊,这里只是规范了下多行只用最前和最后加上即可,不要每行都加。
/**
* comment
*/
/*
* comment
*/
/*
comment
*/
// comment
或
/// comment
apache 的注释风格比较杂。vim 注释风格也比较乱,但是 neovim 就很统一。也浏览了一下 gcc/sed 等其他 GNU 项目,多行注释风格都很一致。