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.
linesize
                                             Up Contents Index Back
─────C/C++ Language─────────────────────────────────────────────────────────
 
  Pragma:    linesize
 
  Syntax:    #pragma linesize( [characters] )
 
  Summary:   Specifies the number of characters per line in the
             source listing.
 
  See also:  page, pagesize, skip, title, subtitle
 
     The linesize pragma sets the number of characters per line in a
     source listing (created with the /Fs option).
 
     The optional parameter <characters> is an integer constant in the
     range 79-132 that specifies the number of characters that you want
     each line of the source listing to have. If <characters> is
     absent, the compiler uses the value specified in the /Sl option
     or, if that option is absent, the default value of 79 characters
     per line. Note that linesize takes effect in the line after that
     in which the pragma itself appears.
 
     The following pragma causes the source listing to have 132
     characters per line:
 
          #pragma linesize( 132 )
                                    -♦-