I\'m developing a C api for some functionality written in C++ and I want to make sure that no exceptions are propagated out of any of the exported C functions.
The s
There already is a good answer. But just FYI, its called 'exception-dispatcher' idiom, see C++ FAQ.