astyle

astyle: is there an option to add a space between `#include` and `<...>`?


For example, this code snippet:

#include<math.h>

would becomes:

#include <math.h>

I read the document and googled but didn't find one.


Solution

  • Seems not. But it's ok since a regex can handle this situation well.