Crossware

Table of Contents        Previous topic       Next topic       

C/C++ COMPILER->Inline Functions

If a function is declared with the inline keyword its function body is inserted into each place the function is called and the overhead of a function call is avoided, possibly at the expense of code size depending on the complexity of the inlined function.