I have a shared library written in C++. It exports a visible interface made of extern "C" functions which create, destroy and manipulate opaque types.
Now, I'd like to have a pure C program which uses this library.
Can I do this (platform independently) ? When will the C++ runtime and the C++ static objects get initialized if main is not written in C++ ?
