Please help with adding spaces between '#include' and '<...>'.

Oleksandr Gavenko <[email protected]> Tue, 03 Jul 2012 15:58:50 +0300
Newsgroups gmane.comp.gnu.indent.bugs
Organization At home.
Message-ID <[email protected]>
I get sources with lines like:

  #include<stdio.h>
  #include"locals.h"

This look so unusual that I decide add new rule to indent default to get
sources look like:

  #include <stdio.h>
  #include "locals.h"

Seems that both cases are valid according to "6.10 Preprocessing directives" of
C99.

But search queries:

  include
  space

in indent(1) take no relevant result.

Is this possible with indent?

If no, think that I make feature request.

I can try implement such switch (if developers agree).

Currently I run 'sed'...

-- 
Best regards!