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 / ccomment.h < prev    next >
Encoding:
Text File  |  1995-01-14  |  670 b   |  42 lines

  1. /*
  2. ** function starting with a C comment
  3. */
  4. void ccomment(
  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_eol_before_comma    /* end of line, but before comma */,
  23.  
  24.     int multiple_eol_before_comma    /*
  25.                      * multiple lines after, at the EOL and
  26.                      * before comma.
  27.                      * can't imagine anyone coding this.
  28.                      */,
  29.  
  30.     int single_after
  31.     /* single line after */
  32.     ,
  33.  
  34.     int multiple_after
  35.     /*
  36.      * multiple lines
  37.      * after.
  38.      * can't imagine anyone coding like this.
  39.      */
  40. );
  41.  
  42.