C Language and Libraries Help (clang.hlp) (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
skip
                                             Up Contents Index Back
─────C/C++ Language─────────────────────────────────────────────────────────
 
  Pragma:    skip
 
  Syntax:    #pragma skip( [lines] )
 
  Summary:   Skips the specified number of lines in the source listing.
 
  See also:  linesize, page, pagesize, title, subtitle
 
     The skip pragma generates a newline character (CR/LF) in the source
     listing at the point where the pragma appears.
 
     The optional <lines> parameter is an integer constant in the range
     1-127 that specifies the number of lines to skip. If this parameter
     is absent, the skip pragma defaults to one line.
 
     The following statement places one blank line in the source
     listing:
 
          #pragma skip()
                                    -♦-