Multiple definition of inline functions when linking static libs

First you have to understand the C99 inline model – perhaps there is something wrong with your headers. There are two kind of definitions for inline functions with external (non-static) linkage External definition This definition of a function can only appear once in the whole program, in a designated TU. It provides an exported function … Read more