C ++ Equivalent to Tidy

Is there an equivalent for tidy for HTML code for C ++? I searched on the Internet, but I find nothing but C ++ - wrappers for accuracy, etc. I think the tidy keyword is what hung me.

I'm basically looking for something to take code written by two people and clear it up to a standardized style. Is there such an application?

Thanks a bunch!

+4
source share
3 answers

Art style

is an indenter of source code, formatting, and decorator for C, C ++, C # and Java programming languages.

Gc great code

- Well-known C / C ++ Beautifier source code.

+9
source

Of course, in a few minutes I will find the answer to my question. What luck, I probably spent an hour earlier.

If someone is looking for the same, check out Uncrustify at http://uncrustify.sourceforge.net/

0
source

If you are using Visual Studio, you can take a look at StyleManager *. This is a VS add-in that simplifies customization of formatting styles and applies them to the code whenever you need. This is a popular choice for VS users, and in particular, the DirectX SDK development team used their sample code.

* Huge disclaimer: I am one of the authors of this software, so I apologize for the shameless version!

0
source

All Articles