Indent is beatiful tool for C programming, but it does not support one style I 
like. Any function have declaration, implementation and call. Currently, 
indent regard it the same, with `pcs' option. My suggestion is to split it 
into different cases. Why care? I belive not only I like to write call w/o 
space, and declaration and implementation with.
Example, what I mean:
int foo (int x, double y);
int 
foo (int x, double y) 
{
    return x + ceil(y);
}
int 
main(int argc, char **argv) 
{
    return foo(12,42);
}
Best regards,
        Dmitry Bogatov

_______________________________________________
bug-indent mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/bug-indent

Reply via email to