home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / c / c2man-2.0pl33.lha / c2man-2.0 / eg / cppcomment.h < prev    next >
Encoding:
Text File  |  1995-01-14  |  439 b   |  33 lines

  1. //
  2. // function starting with a C++ comment
  3. //
  4. void cppcomment(
  5.     // single line before
  6.     int single_before,
  7.  
  8.     //
  9.     // multiple
  10.     // lines before
  11.     //
  12.     int multiple_before,
  13.  
  14.     int end_of_line,    // end of the line
  15.  
  16.     int multiple_eol,    //
  17.                 // multiple lines
  18.                 // starting at
  19.                 // the EOL
  20.                 //
  21.  
  22.     int single_after
  23.     // single line after
  24.     ,
  25.     int multiple_after
  26.     //
  27.     // multiple lines
  28.     // after.
  29.     // cant imagine anyone coding like this.
  30.     //
  31. );
  32.  
  33.