Changes between Version 47 and Version 48 of ResumedC


Ignore:
Timestamp:
Sep 9, 2009, 10:42:00 PM (16 years ago)
Author:
Thanatermesis
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ResumedC

    v47 v48  
    492492
    493493
    494 === Macros ===
     494=== Macros & Preprocessor ===
    495495Remember to put always the parameters between parentheses, so that maybe the parameter needs to be calculated before to use it, just like:
    496496{{{
     
    547547#endif
    548548}}}
     549
     550==== #line ====
     551It allow you to be moved to any line and also to another file, from your source code directly:
     552{{{
     553#!C
     554#line 500 "my_prog.c"
     555}}}
     556
    549557
    550558