Dr. Dobb's Journal May 1998
void A (...) {
InlinedProc (...);
...
}
void InlinedProc (...) {
if (condition)
// Code that is frequently executed when called by A
else
// Code frequently executed when called by others
}