astyle:是否有在 `#include` 和 `<...>` 之间添加 space 的选项?
astyle: is there an option to add a space between `#include` and `<...>`?
例如,这个代码片段:
#include<math.h>
会变成:
#include <math.h>
我阅读了文档并进行了谷歌搜索,但没有找到。
好像不是。但没关系,因为正则表达式可以很好地处理这种情况。
例如,这个代码片段:
#include<math.h>
会变成:
#include <math.h>
我阅读了文档并进行了谷歌搜索,但没有找到。
好像不是。但没关系,因为正则表达式可以很好地处理这种情况。