home *** CD-ROM | disk | FTP | other *** search
- When you declare a function with the keyword inline, you are
- giving the compiler a suggestion to copy the code of the function
- to every point where it is called rather than transferring control
- to a single copy of the function code. This can save some of the
- overhead that comes from function calls.
-