Crossware

Table of Contents        Previous topic       Next topic       

C/C++ COMPILER->Inline Functions

In-line functions are only supported when the Advanced Features of the compiler are enabled.

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.