Inline Specifier
From Embedded Systems Learning Academy
Revision as of 00:31, 15 December 2016 by Proj user8 (talk | contribs) (Created page with "'''inline''' is a specifier for a function in C/C++ that tells the compiler to replace the function call in assembly with the contents of the function. === Basic Example of t...")
inline is a specifier for a function in C/C++ that tells the compiler to replace the function call in assembly with the contents of the function.