Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C++ Equivalent of Tidy

Tags:

c++

Is there an equivalent to tidy for HTML code for C++? I have searched on the internet, but I find nothing but C++ wrappers for tidy, etc... I think the keyword tidy is what has me hung up.

I am basically looking for something to take code written by two people, and clean it up to a standardized style. Does such an app exist?

Thanks a bunch!

like image 541
Cody Avatar asked Jan 24 '23 00:01

Cody


1 Answers

Artistic Style

is a source code indenter, formatter, and beautifier for the C, C++, C# and Java programming languages.

GC Great Code

is a well known C/C++ source code beautifier.

like image 120
Cristian Adam Avatar answered Jan 30 '23 13:01

Cristian Adam