Skip to main content
Visitor II
March 3, 2011
Question

inline functions [COSMIC]

  • March 3, 2011
  • 2 replies
  • 776 views
Posted on March 03, 2011 at 12:39

inline functions [COSMIC]

    This topic has been closed for replies.

    2 replies

    Visitor II
    May 17, 2011
    Posted on May 17, 2011 at 15:12

    Hi,

    try like this:

    @inline void loop (void) {

     

    }

     

    main()

    {

            loop();

            while (1);

    }

     

    Regards,

    Luca

    hgprojektAuthor
    Visitor II
    May 17, 2011
    Posted on May 17, 2011 at 15:12

    Yes. It works. Thank you.

    Is it possible to define inline function in external file?

    Regards,

    hg