Hello,
I'm trying to use clang-format to format source files of a project, nowadays
done with the help of indent.
I'm trying to get an old tradition thing like :
int
myfunction(a, b)
int a;
char *b;
{
...
But, playing with .clang-format file, what I have is always something like :
int myfuntion(a, b) int a;
char *b;
{
...
Which is far from what I'm trying to do.
Is there a way to tweak .clang-format file to get this old style of C format
code ?
Thanks for your help.
JMarcio
_______________________________________________
cfe-users mailing list
[email protected]
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-users