Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我会使用 vera++ 来分析我开发的几个 C 库。
这些库包含在 4 个不同的文件夹中,并且没有 main.c 文件。
可以用 vera++ 检查库代码吗?还是 vera++ 需要 main.c?
谢谢
要检查文件 .c 或 .h 运行 vera++
vera++ my_file.c
如果您只想运行特定规则,您可以执行
vera++ -R T013 my_file.c
我使用以下内容在 src/ 中的所有文件上运行 vera++,并包含/匹配 *.c 和 *.h
find src/ include/ -type f -regextype sed -iregex ".*/*\.\(c\|h\)" -print | xargs vera++