up vote 4 down vote favorite
share [g+] share [fb]

I have a Code which is C++ (*.cpp - source, *.hpp - header files).

In the overall code,there are many classes defined, their member functions, constructors, destructors for those classes, few template classes and lots of C++ stuff. Now i need to convert the source to plain C code. I have following questions -

1.) Is there any tool to convert C++ code and header files to C code?

2.) Or will I have to do total rewrite of the code(i will have to remove the constructors,destructors and move that code into some init(),deinit() functions; change classes to structures, make existing member functions as function pointers in those newly defined structures and then invoke those functions using function pointes etc..)?

3.) If at all i have to convert manually myself, what all C++ specific code-data constructs/semantics i need to take care while doing the conversion to C specific code-data semantics?

Thank you.

-AD

link|improve this question

59% accept rate
3  
C++ to C? Sounds horribly complex. – Shree Apr 10 '09 at 10:40
1  
It is. Just consider all the destructors that are called. I'll bet that more than 99% of those calls are implicit. In C, you have to write all of them. Ouch! – MSalters Apr 10 '09 at 11:30
feedback

3 Answers

There is indeed such a tool, Comeau's C++ compiler. . It will generate C code which you can't manually maintain, but that's no problem. You'll maintain the C++ code, and just convert to C on the fly.

link|improve this answer
@MSalters: Thanks for the pointer about Comeaus compiler. But sadly that doesnt serve my purpose, as comeaus compiler intermediate format c code is not possible to obtain, and even if we obtain somehow its not compilable by normal ANSI-C compilers. – goldenmean Apr 10 '09 at 11:36
1  
If your code does not use exceptions and templates you might have a chance to get an old copy of cfront to work on your code. But as MSalters said it's going to be ugly :-) – lothar Apr 10 '09 at 15:49
it would also have to use no standard library functionality – anon Apr 10 '09 at 16:37
feedback

http://llvm.org/docs/FAQ.html#translatecxx

PS: i haven't used it at all. let me know if it works.

link|improve this answer
@plan9assembler: Thanks for the pointer. I will check it out and let u know. – goldenmean Apr 10 '09 at 11:42
I have tried to convert hello_world.cpp to C file by using LLVM. The resulting C code is as ugly as machine code. The preprocessor's include's are all gone. – MikimotoH Apr 28 '11 at 17:32
@MikimotoH, it looks that way because its not a syntax to syntax source translation. Its really a compiler that can output to c, which means you still are dependent on any linked C++ libs. Its really best used for debugging, or as viewing material. BTW: ugly it may be, but believe me its better than machine code and you could at least learn from it. You can learn better from clang c++ to c, than any disassembly. – TechZilla Nov 26 '11 at 9:27
feedback

While you can do OO in C (e.g. by adding a theType *this first parameter to methods, and manually handling something like vtables for polymorphism) this is never particularly satisfactory as a design, and will look ugly (even with some pre-processor hacks).

I would suggest at least looking at a re-design to compare how this would work out.

Overall a lot depends on the answer to the key question: if you have working C++ code, why do you want C instead?

link|improve this answer
The author's reasons are obviously situationally specific, but reasons do exist. Sometimes a c++ compiler does not exist on a particular platform, or just might not be available for some reason. It also serves as a very excellent learning tool. – TechZilla Nov 26 '11 at 9:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.